Closed Wiz1991 closed 1 year ago
When deriving from TryFromMultipart, I get the following warning: Variable `__field__name__` should have snake_case name, e.g. `__field_name`
TryFromMultipart
Variable `__field__name__` should have snake_case name, e.g. `__field_name`
This is my struct:
#[derive(TryFromMultipart)] struct ParsePdf { pdf: FieldData<TempFile>, }
Thank you for letting me know, I will have it fixed in a few days.
Fixed in 0.5.1
When deriving from
TryFromMultipart
, I get the following warning:Variable `__field__name__` should have snake_case name, e.g. `__field_name`
This is my struct: