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 @@ -391,7 +391,7 @@ struct ExpandedField<'a> {
391391 boxed : bool ,
392392}
393393
394- impl < ' a > ExpandedField < ' a > {
394+ impl ExpandedField < ' _ > {
395395 fn render ( & self , options : & GraphQLClientCodegenOptions ) -> Option < TokenStream > {
396396 let ident = Ident :: new ( & self . rust_name , Span :: call_site ( ) ) ;
397397 let qualified_type = decorate_type (
@@ -457,7 +457,7 @@ struct ExpandedVariant<'a> {
457457 is_default_variant : bool ,
458458}
459459
460- impl < ' a > ExpandedVariant < ' a > {
460+ impl ExpandedVariant < ' _ > {
461461 fn render ( & self ) -> TokenStream {
462462 let name_ident = Ident :: new ( & self . name , Span :: call_site ( ) ) ;
463463 let optional_type_ident = self . variant_type . as_ref ( ) . map ( |variant_type| {
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ pub(crate) struct GeneratedModule<'a> {
3232 pub options : & ' a crate :: GraphQLClientCodegenOptions ,
3333}
3434
35- impl < ' a > GeneratedModule < ' a > {
35+ impl GeneratedModule < ' _ > {
3636 /// Generate the items for the variables and the response that will go inside the module.
3737 fn build_impls ( & self ) -> Result < TokenStream , BoxError > {
3838 Ok ( crate :: codegen:: response_for_query (
You can’t perform that action at this time.
0 commit comments