Struct rustc_resolve::ResolverArenas [−][src]
pub struct ResolverArenas<'a> {
modules: TypedArena<ModuleData<'a>>,
local_modules: RefCell<Vec<&'a ModuleData<'a>>>,
imports: TypedArena<Import<'a>>,
name_resolutions: TypedArena<RefCell<NameResolution<'a>>>,
ast_paths: TypedArena<Path>,
dropless: DroplessArena,
}
Expand description
Nothing really interesting here; it just provides memory for the rest of the crate.
Fields
modules: TypedArena<ModuleData<'a>>
local_modules: RefCell<Vec<&'a ModuleData<'a>>>
imports: TypedArena<Import<'a>>
name_resolutions: TypedArena<RefCell<NameResolution<'a>>>
ast_paths: TypedArena<Path>
dropless: DroplessArena
Implementations
pub(crate) fn new_module(
&'a self,
parent: Option<&'a ModuleData<'a>>,
kind: ModuleKind,
expn_id: ExpnId,
span: Span,
no_implicit_prelude: bool,
module_map: &mut FxHashMap<DefId, &'a ModuleData<'a>>
) -> &'a ModuleData<'a>
pub(crate) fn alloc_name_binding(
&'a self,
name_binding: NameBinding<'a>
) -> &'a NameBinding<'a>
pub(crate) fn alloc_macro_rules_scope(
&'a self,
scope: MacroRulesScope<'a>
) -> PtrKey<'a, Cell<MacroRulesScope<'a>>>
pub(crate) fn alloc_macro_rules_binding(
&'a self,
binding: MacroRulesBinding<'a>
) -> &'a MacroRulesBinding<'a>
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<'a> !RefUnwindSafe for ResolverArenas<'a>
impl<'a> !Send for ResolverArenas<'a>
impl<'a> !Sync for ResolverArenas<'a>
impl<'a> Unpin for ResolverArenas<'a>
impl<'a> !UnwindSafe for ResolverArenas<'a>
Blanket Implementations
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: 272 bytes