@@ -128,7 +128,7 @@ impl ToTokens for NewTypeNoGenerics<'_> {
128128 impl std:: convert:: TryFrom <#crat:: Value > for #ir_name {
129129 type Error = #crat:: FromValueError ;
130130
131- fn try_from( v: #crat:: Value ) -> Result <Self , Self :: Error > {
131+ fn try_from( v: #crat:: Value ) -> std :: result :: Result <Self , Self :: Error > {
132132 #path( v) . map( Self )
133133 }
134134 }
@@ -162,7 +162,7 @@ impl ToTokens for NewTypeNoGenerics<'_> {
162162 impl TryFrom <Value > for #ir_name<#field_type> {
163163 type Error = <<#field_type as FromValue >:: Intermediate as TryFrom <Value >>:: Error ;
164164
165- fn try_from( value: Value ) -> Result <Self , Self :: Error > {
165+ fn try_from( value: Value ) -> std :: result :: Result <Self , Self :: Error > {
166166 <#field_type as FromValue >:: Intermediate :: try_from( value) . map( Self )
167167 }
168168 }
@@ -279,7 +279,7 @@ impl ToTokens for NewType<'_> {
279279 where #additional_bounds {
280280 type Error = #crat:: FromValueError ;
281281
282- fn try_from( v: #crat:: Value ) -> Result <Self , Self :: Error > {
282+ fn try_from( v: #crat:: Value ) -> std :: result :: Result <Self , Self :: Error > {
283283 #path( v)
284284 }
285285 }
@@ -305,7 +305,7 @@ impl ToTokens for NewType<'_> {
305305 {
306306 type Error = <<#field_type as #crat:: prelude:: FromValue >:: Intermediate as std:: convert:: TryFrom <#crat:: Value >>:: Error ;
307307
308- fn try_from( value: #crat:: Value ) -> Result <Self , Self :: Error > {
308+ fn try_from( value: #crat:: Value ) -> std :: result :: Result <Self , Self :: Error > {
309309 <#field_type as #crat:: prelude:: FromValue >:: Intermediate :: try_from( value) . map( Self )
310310 }
311311 }
0 commit comments