Enum rustc_ast::ast::UseTreeKind [−][src]
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
use prefix
or use prefix as rename
The extra NodeId
s are for HIR lowering, when additional statements are created for each
namespace.
use prefix::{...}
use prefix::*
Trait Implementations
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
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