pub struct Path {
path: Vec<Symbol>,
params: Vec<Box<Ty>>,
kind: PathKind,
}
Expand description
A path, e.g., ::std::option::Option::<i32>
(global). Has support
for type parameters.
Fields§
§path: Vec<Symbol>
§params: Vec<Box<Ty>>
§kind: PathKind
Implementations§
source§impl Path
impl Path
pub fn new(path: Vec<Symbol>) -> Path
pub fn new_local(path: Symbol) -> Path
pub fn new_(path: Vec<Symbol>, params: Vec<Box<Ty>>, kind: PathKind) -> Path
pub fn to_ty( &self, cx: &ExtCtxt<'_>, span: Span, self_ty: Ident, self_generics: &Generics ) -> P<Ty>
pub fn to_path( &self, cx: &ExtCtxt<'_>, span: Span, self_ty: Ident, self_generics: &Generics ) -> Path
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Path
impl Send for Path
impl Sync for Path
impl Unpin for Path
impl UnwindSafe for Path
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 56 bytes