[][src]Struct moore_svlog_syntax::ast::InstData

pub struct InstData<'a> {
    pub target: Spanned<Name>,
    pub params: Vec<ParamAssignment<'a>>,
    pub names: Vec<InstName<'a>>,
}

An instantiation of a module.

For example foo u0(), u1();.

Fields

target: Spanned<Name>

The name of the module to instantiate.

params: Vec<ParamAssignment<'a>>

The parameters in the module to be assigned.

names: Vec<InstName<'a>>

The names and ports of the module instantiations.

Trait Implementations

impl<'a> AcceptVisitor<'a> for InstData<'a>[src]

impl<'a> AnyNodeData for InstData<'a>[src]

impl<'a> Clone for InstData<'a>[src]

impl<'a> Debug for InstData<'a>[src]

impl<'a> Eq for InstData<'a>[src]

impl<'a> ForEachChild<'a> for InstData<'a>[src]

impl<'a> ForEachNode<'a> for InstData<'a>[src]

impl<'a> PartialEq<InstData<'a>> for InstData<'a>[src]

impl<'a> StructuralEq for InstData<'a>[src]

impl<'a> StructuralPartialEq for InstData<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for InstData<'a>

impl<'a> Send for InstData<'a>

impl<'a> Sync for InstData<'a>

impl<'a> Unpin for InstData<'a>

impl<'a> !UnwindSafe for InstData<'a>

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.