Enum rustc_ast::ast::UseTreeKind
source · pub enum UseTreeKind {
Simple(Option<Ident>, NodeId, NodeId),
Nested(Vec<(UseTree, NodeId)>),
Glob,
}
Expand description
Part of use
item to the right of its prefix.
Variants
Simple(Option<Ident>, NodeId, NodeId)
use prefix
or use prefix as rename
The extra NodeId
s are for HIR lowering, when additional statements are created for each
namespace.
Nested(Vec<(UseTree, NodeId)>)
use prefix::{...}
Glob
use prefix::*
Trait Implementations
sourceimpl Clone for UseTreeKind
impl Clone for UseTreeKind
sourcefn clone(&self) -> UseTreeKind
fn clone(&self) -> UseTreeKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for UseTreeKind
impl Debug 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn 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: 32 bytes
Size for each variant:
Simple
: 20 bytesNested
: 28 bytesGlob
: 0 bytes