File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
graphql_client_codegen/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,8 +86,8 @@ impl<'a> GeneratedModule<'a> {
86
86
87
87
use std:: result:: Result ;
88
88
89
- pub const OPERATION_NAME : & ' static str = #operation_name;
90
- pub const QUERY : & ' static str = #query_string;
89
+ pub const OPERATION_NAME : & str = #operation_name;
90
+ pub const QUERY : & str = #query_string;
91
91
92
92
#query_include
93
93
Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ impl UsedTypes {
608
608
. map ( move |enum_id| ( enum_id, schema. get_enum ( enum_id) ) )
609
609
}
610
610
611
- pub ( crate ) fn fragment_ids < ' b > ( & ' b self ) -> impl Iterator < Item = ResolvedFragmentId > + ' b {
611
+ pub ( crate ) fn fragment_ids ( & self ) -> impl Iterator < Item = ResolvedFragmentId > + ' _ {
612
612
self . fragments . iter ( ) . copied ( )
613
613
}
614
614
}
You can’t perform that action at this time.
0 commit comments