[][src]Struct moore_vhdl::scope::Scope

pub struct Scope {
    pub parent: Option<ScopeRef>,
    pub defs: HashMap<ResolvableName, Vec<Spanned<Def>>>,
    pub imported_defs: HashMap<ResolvableName, Vec<Spanned<Def>>>,
    pub imported_scopes: HashSet<ScopeRef>,
}

A scope.

Fields

parent: Option<ScopeRef>

The parent scope.

defs: HashMap<ResolvableName, Vec<Spanned<Def>>>

The definitions made in this scope.

imported_defs: HashMap<ResolvableName, Vec<Spanned<Def>>>

The definitions imported from other scopes.

imported_scopes: HashSet<ScopeRef>

The explicitly imported scopes.

Implementations

impl Scope[src]

pub fn new(parent: Option<ScopeRef>) -> Scope[src]

Create a new empty scope.

Trait Implementations

impl Clone for Scope[src]

impl Debug for Scope[src]

Auto Trait Implementations

impl RefUnwindSafe for Scope

impl Send for Scope

impl Sync for Scope

impl Unpin for Scope

impl UnwindSafe for Scope

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.