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> {
391
391
boxed : bool ,
392
392
}
393
393
394
- impl < ' a > ExpandedField < ' a > {
394
+ impl ExpandedField < ' _ > {
395
395
fn render ( & self , options : & GraphQLClientCodegenOptions ) -> Option < TokenStream > {
396
396
let ident = Ident :: new ( & self . rust_name , Span :: call_site ( ) ) ;
397
397
let qualified_type = decorate_type (
@@ -457,7 +457,7 @@ struct ExpandedVariant<'a> {
457
457
is_default_variant : bool ,
458
458
}
459
459
460
- impl < ' a > ExpandedVariant < ' a > {
460
+ impl ExpandedVariant < ' _ > {
461
461
fn render ( & self ) -> TokenStream {
462
462
let name_ident = Ident :: new ( & self . name , Span :: call_site ( ) ) ;
463
463
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> {
32
32
pub options : & ' a crate :: GraphQLClientCodegenOptions ,
33
33
}
34
34
35
- impl < ' a > GeneratedModule < ' a > {
35
+ impl GeneratedModule < ' _ > {
36
36
/// Generate the items for the variables and the response that will go inside the module.
37
37
fn build_impls ( & self ) -> Result < TokenStream , BoxError > {
38
38
Ok ( crate :: codegen:: response_for_query (
You can’t perform that action at this time.
0 commit comments