[][src]Struct moore_vhdl::symtbl::Scope

pub struct Scope {
    pub node_id: NodeId,
    pub subscopes: HashSet<NodeId>,
    pub defs: HashMap<DefName, Vec<(Span, Def)>>,
    pub parent_id: Option<NodeId>,
}

Fields

node_id: NodeIdsubscopes: HashSet<NodeId>defs: HashMap<DefName, Vec<(Span, Def)>>parent_id: Option<NodeId>

Implementations

impl Scope[src]

pub fn new(node_id: NodeId) -> Scope[src]

Create a new empty scope for the node with the given ID.

pub fn merge(&mut self, other: Scope)[src]

Merge the contents of another scope into this scope. The scope keeps the current node ID.

pub fn declare_subscope(&mut self, scope_id: NodeId)[src]

Declare a subscope that is nested within this scope.

pub fn declare(&mut self, name: Spanned<DefName>, def: Def)[src]

Declare a name that can be bound to in this scope.

Trait Implementations

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, 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.