[][src]Struct moore_svlog::hir::ModuleBlock

pub struct ModuleBlock {
    pub insts: Vec<NodeId>,
    pub decls: Vec<NodeId>,
    pub procs: Vec<NodeId>,
    pub gens: Vec<NodeId>,
    pub params: Vec<NodeId>,
    pub assigns: Vec<NodeId>,
}

The contents of a module.

Fields

insts: Vec<NodeId>

The module/interface instances in the module.

decls: Vec<NodeId>

The variable and net declarations in the module.

procs: Vec<NodeId>

The procedures in the module.

gens: Vec<NodeId>

The generate blocks in the module.

params: Vec<NodeId>

The parameter declarations in the module.

assigns: Vec<NodeId>

The continuous assignments in the module.

Trait Implementations

impl Clone for ModuleBlock[src]

impl Debug for ModuleBlock[src]

impl Eq for ModuleBlock[src]

impl PartialEq<ModuleBlock> for ModuleBlock[src]

impl StructuralEq for ModuleBlock[src]

impl StructuralPartialEq for ModuleBlock[src]

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T

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.