Enum rustc_resolve::imports::ImportKind[][src]

pub enum ImportKind<'a> {
    Single {
        source: Ident,
        target: Ident,
        source_bindings: PerNS<Cell<Result<&'a NameBinding<'a>, Determinacy>>>,
        target_bindings: PerNS<Cell<Option<&'a NameBinding<'a>>>>,
        type_ns_only: bool,
        nested: bool,
    },
    Glob {
        is_prelude: bool,
        max_vis: Cell<Visibility>,
    },
    ExternCrate {
        source: Option<Symbol>,
        target: Ident,
    },
    MacroUse,
}
Expand description

Contains data for specific kinds of imports.

Variants

Single

Fields of Single

source: Ident

source in use prefix::source as target.

target: Ident

target in use prefix::source as target.

source_bindings: PerNS<Cell<Result<&'a NameBinding<'a>, Determinacy>>>

Bindings to which source refers to.

target_bindings: PerNS<Cell<Option<&'a NameBinding<'a>>>>

Bindings introduced by target.

type_ns_only: bool

true for ...::{self [as target]} imports, false otherwise.

nested: bool

Did this import result from a nested import? ie. use foo::{bar, baz};

Glob

Fields of Glob

is_prelude: boolmax_vis: Cell<Visibility>
ExternCrate

Fields of ExternCrate

source: Option<Symbol>target: Ident
MacroUse

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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: 104 bytes

Size for each variant: