@@ -317,7 +317,7 @@ impl TypeEngineConfig {
317317 }
318318 }
319319
320- pub fn patterns ( & self ) -> impl Iterator < Item = ( KString , GlobEngineConfig ) > {
320+ pub fn patterns ( & self ) -> impl Iterator < Item = ( KString , GlobEngineConfig ) > + use < > {
321321 let mut engine = Self :: from_defaults ( ) ;
322322 engine. update ( self ) ;
323323 engine. patterns . into_iter ( )
@@ -619,23 +619,23 @@ impl std::fmt::Display for Locale {
619619}
620620
621621#[ cfg( feature = "unstable-schema" ) ]
622- fn vec_string ( gen : & mut schemars:: SchemaGenerator ) -> schemars:: Schema {
622+ fn vec_string ( r# gen: & mut schemars:: SchemaGenerator ) -> schemars:: Schema {
623623 type Type = Vec < String > ;
624- <Type as schemars:: JsonSchema >:: json_schema ( gen)
624+ <Type as schemars:: JsonSchema >:: json_schema ( r# gen)
625625}
626626
627627#[ cfg( feature = "unstable-schema" ) ]
628- fn hashmap_string_string ( gen : & mut schemars:: SchemaGenerator ) -> schemars:: Schema {
628+ fn hashmap_string_string ( r# gen: & mut schemars:: SchemaGenerator ) -> schemars:: Schema {
629629 type Type = HashMap < String , String > ;
630- <Type as schemars:: JsonSchema >:: json_schema ( gen)
630+ <Type as schemars:: JsonSchema >:: json_schema ( r# gen)
631631}
632632
633633#[ cfg( feature = "unstable-schema" ) ]
634634fn hashmap_string_t < T : schemars:: JsonSchema > (
635- gen : & mut schemars:: SchemaGenerator ,
635+ r# gen: & mut schemars:: SchemaGenerator ,
636636) -> schemars:: Schema {
637637 type Type < T > = HashMap < String , T > ;
638- <Type < T > as schemars:: JsonSchema >:: json_schema ( gen)
638+ <Type < T > as schemars:: JsonSchema >:: json_schema ( r# gen)
639639}
640640
641641#[ cfg( test) ]
0 commit comments