Enum rustc_resolve::NameBindingKind
source · pub(crate) enum NameBindingKind<'a> {
Res(Res<NodeId>, bool),
Module(&'a ModuleData<'a>),
Import {
binding: &'a NameBinding<'a>,
import: &'a Import<'a>,
used: Cell<bool>,
},
}
Variants
Res(Res<NodeId>, bool)
Module(&'a ModuleData<'a>)
Import
Implementations
sourceimpl<'a> NameBindingKind<'a>
impl<'a> NameBindingKind<'a>
Trait Implementations
sourceimpl<'a> Clone for NameBindingKind<'a>
impl<'a> Clone for NameBindingKind<'a>
sourcefn clone(&self) -> NameBindingKind<'a>
fn clone(&self) -> NameBindingKind<'a>
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 moreAuto Trait Implementations
impl<'a> !RefUnwindSafe for NameBindingKind<'a>
impl<'a> !Send for NameBindingKind<'a>
impl<'a> !Sync for NameBindingKind<'a>
impl<'a> Unpin for NameBindingKind<'a>
impl<'a> !UnwindSafe for NameBindingKind<'a>
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:
Res
: 27 bytesModule
: 15 bytesImport
: 23 bytes