Commit 22ada5d 1 parent 2959e38 commit 22ada5d Copy full SHA for 22ada5d
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -818,7 +818,7 @@ fn impl_struct_by_extracting_all_at_once(
818
818
req: :: axum:: http:: Request <:: axum:: body:: Body >,
819
819
state: & #state,
820
820
) -> :: std:: result:: Result <Self , Self :: Rejection > {
821
- :: axum:: extract:: FromRequest :: from_request( req, state)
821
+ <#via_path<#via_type_generics> as :: axum:: extract:: FromRequest <#trait_generics>> :: from_request( req, state)
822
822
. await
823
823
. map( |#via_path( value) | #value_to_self)
824
824
. map_err( #map_err)
@@ -841,7 +841,7 @@ fn impl_struct_by_extracting_all_at_once(
841
841
parts: & mut :: axum:: http:: request:: Parts ,
842
842
state: & #state,
843
843
) -> :: std:: result:: Result <Self , Self :: Rejection > {
844
- :: axum:: extract:: FromRequestParts :: from_request_parts( parts, state)
844
+ <#via_path<#via_type_generics> as :: axum:: extract:: FromRequestParts <#trait_generics>> :: from_request_parts( parts, state)
845
845
. await
846
846
. map( |#via_path( value) | #value_to_self)
847
847
. map_err( #map_err)
You can’t perform that action at this time.
0 commit comments