Home
last modified time | relevance | path

Searched refs:TypePath (Results 1 – 10 of 10) sorted by relevance

/linux/rust/syn/
H A Dty.rs53 Path(TypePath),
176 pub struct TypePath {
291 TypeImplTrait, TypeInfer, TypeMacro, TypeNever, TypeParen, TypePath, TypePtr,
334 return Ok(Type::Path(TypePath { in ambig_ty()
443 Type::Path(TypePath { qself: None, path }) => { in ambig_ty()
517 let ty: TypePath = input.parse()?; in ambig_ty()
783 impl Parse for TypePath { implementation
787 Ok(TypePath { qself, path }) in parse()
1081 TypeInfer, TypeMacro, TypeNever, TypeParen, TypePath, TypePtr, TypeReference, TypeSlice,
1174 impl ToTokens for TypePath { implementation
H A Dlib.rs545 TypeImplTrait, TypeInfer, TypeMacro, TypeNever, TypeParen, TypePath, TypePtr, TypeReference,
H A Ditem.rs935 use crate::ty::{Abi, ReturnType, Type, TypePath, TypeReference};
1672 let mut ty = Type::Path(TypePath { in parse()
2605 if let Type::Path(TypePath { qself: None, .. }) = first_ty_ref { in parse_impl()
2609 if let Type::Path(TypePath { qself: None, path }) = first_ty { in parse_impl()
/linux/rust/syn/gen/
H A Dfold.rs928 fn fold_type_path(&mut self, i: crate::TypePath) -> crate::TypePath { in fold_type_path() argument
3647 pub fn fold_type_path<F>(f: &mut F, node: crate::TypePath) -> crate::TypePath in fold_type_path()
3651 crate::TypePath { in fold_type_path()
H A Dclone.rs2064 impl Clone for crate::TypePath { implementation
2066 crate::TypePath { in clone()
H A Deq.rs2079 impl Eq for crate::TypePath {} implementation
2082 impl PartialEq for crate::TypePath { implementation
H A Ddebug.rs2948 impl Debug for crate::TypePath { implementation
2954 impl crate::TypePath { implementation
H A Dvisit_mut.rs862 fn visit_type_path_mut(&mut self, i: &mut crate::TypePath) { in visit_type_path_mut() argument
3524 pub fn visit_type_path_mut<V>(v: &mut V, node: &mut crate::TypePath) in visit_type_path_mut()
H A Dvisit.rs854 fn visit_type_path(&mut self, i: &'ast crate::TypePath) { in visit_type_path() argument
3702 pub fn visit_type_path<'ast, V>(v: &mut V, node: &'ast crate::TypePath) in visit_type_path()
H A Dhash.rs2628 impl Hash for crate::TypePath { implementation