Lines Matching refs:item_ident

121 	let item_ident = &struct_info.ident;  in write_rental_struct_and_impls()  localVariable
123 let item_ident_str = syn::LitStr::new(&item_ident.to_string(), item_ident.span()); in write_rental_struct_and_impls()
330 …),*> __rental_prelude::#rental_trait_ident<#(#struct_rlt_args),*> for #item_ident #struct_impl_arg… in write_rental_struct_and_impls()
338 impl #struct_impl_params #item_ident #struct_impl_args #struct_where_clause { in write_rental_struct_and_impls()
351 #item_ident { in write_rental_struct_and_impls()
375 __rental_prelude::Result::Ok(#item_ident { in write_rental_struct_and_impls()
399 __rental_prelude::Result::Ok(#item_ident { in write_rental_struct_and_impls()
509 impl #struct_impl_params #item_ident #struct_impl_args #struct_where_clause { in write_rental_struct_and_impls()
522 f(unsafe { #item_ident::all_erased(#self_arg) }) in write_rental_struct_and_impls()
532 f(unsafe { #item_ident::all_erased(#self_arg) }) in write_rental_struct_and_impls()
542 f(unsafe { #item_ident::all_erased(#self_arg) }) in write_rental_struct_and_impls()
552 f(unsafe { #item_ident::all_erased(#self_arg) }) in write_rental_struct_and_impls()
562 f(unsafe { #item_ident::all_mut_erased(#self_arg) }) in write_rental_struct_and_impls()
572 f(unsafe { #item_ident::all_mut_erased(#self_arg) }) in write_rental_struct_and_impls()
582 f(unsafe { #item_ident::all_mut_erased(#self_arg) }) in write_rental_struct_and_impls()
592 f(unsafe { #item_ident::all_mut_erased(#self_arg) }) in write_rental_struct_and_impls()
601 …impl #struct_impl_params __rental_prelude::fmt::Debug for #item_ident #struct_impl_args #struct_wh… in write_rental_struct_and_impls()
611 …impl #struct_impl_params __rental_prelude::fmt::Debug for #item_ident #struct_impl_args #struct_wh… in write_rental_struct_and_impls()
624 …impl #struct_impl_params __rental_prelude::Clone for #item_ident #struct_impl_args #struct_where_c… in write_rental_struct_and_impls()
626 #item_ident { in write_rental_struct_and_impls()
707 …impl #struct_impl_params __rental_prelude::Deref for #item_ident #struct_impl_args #struct_where_c… in write_rental_struct_and_impls()
711 #item_ident::ref_rent(self, |suffix| &**suffix) in write_rental_struct_and_impls()
719 …impl #struct_impl_params __rental_prelude::DerefMut for #item_ident #struct_impl_args #struct_wher… in write_rental_struct_and_impls()
721 #item_ident::ref_rent_mut(self, |suffix| &mut **suffix) in write_rental_struct_and_impls()
730 …_rental_prelude::AsRef<<Self as __rental_prelude::Deref>::Target> for #item_ident #struct_impl_arg… in write_rental_struct_and_impls()
740 …_rental_prelude::AsMut<<Self as __rental_prelude::Deref>::Target> for #item_ident #struct_impl_arg… in write_rental_struct_and_impls()
751 impl #struct_impl_params #item_ident #struct_impl_args #struct_where_clause { in write_rental_struct_and_impls()
760 #item_ident::all_erased(#self_arg) in write_rental_struct_and_impls()
780 let mapped_ty = replacer.fold_path(parse_quote!(#item_ident #struct_impl_args)); in write_rental_struct_and_impls()
841 impl #struct_impl_params #item_ident #struct_impl_args #struct_where_clause { in write_rental_struct_and_impls()
846 let #item_ident{ #(#field_idents,)* } = #self_arg; in write_rental_struct_and_impls()
850 #item_ident{ #(#field_idents: #local_idents,)* } in write_rental_struct_and_impls()
857 let #item_ident{ #(#field_idents,)* } = #self_arg; in write_rental_struct_and_impls()
860 …__rental_prelude::Result::Ok(#suffix_ident) => __rental_prelude::Result::Ok(#item_ident { #(#field… in write_rental_struct_and_impls()
869 let #item_ident{ #(#field_idents,)* } = #self_arg; in write_rental_struct_and_impls()
873 Ok(#item_ident{ #(#field_idents: #local_idents,)* }) in write_rental_struct_and_impls()