Enum rustc_ast::ast::UseTreeKind
source · pub enum UseTreeKind {
Simple(Option<Ident>),
Nested(ThinVec<(UseTree, NodeId)>),
Glob,
}
Expand description
Part of use
item to the right of its prefix.
Variants§
Simple(Option<Ident>)
use prefix
or use prefix as rename
Nested(ThinVec<(UseTree, NodeId)>)
use prefix::{...}
Glob
use prefix::*
Trait Implementations§
source§impl Clone for UseTreeKind
impl Clone for UseTreeKind
source§fn clone(&self) -> UseTreeKind
fn clone(&self) -> UseTreeKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UseTreeKind
impl Debug for UseTreeKind
source§impl<__D: Decoder> Decodable<__D> for UseTreeKind
impl<__D: Decoder> Decodable<__D> for UseTreeKind
Auto Trait Implementations§
impl !RefUnwindSafe for UseTreeKind
impl !Send for UseTreeKind
impl !Sync for UseTreeKind
impl Unpin for UseTreeKind
impl !UnwindSafe for UseTreeKind
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: 16 bytes
Size for each variant:
Simple
: 12 bytesNested
: 12 bytesGlob
: 0 bytes