[][src]Struct moore_svlog::ast::Inst

pub struct Inst {
    pub span: Span,
    pub target: Identifier,
    pub params: Vec<ParamAssignment>,
    pub names: Vec<InstName>,
}

Fields

span: Spantarget: Identifier

The name of the module to instantiate.

params: Vec<ParamAssignment>

The parameters in the module to be assigned.

names: Vec<InstName>

The names and ports of the module instantiations.

Trait Implementations

impl Clone for Inst[src]

impl Debug for Inst[src]

impl Decodable for Inst[src]

impl Encodable for Inst[src]

impl Eq for Inst[src]

impl HasDesc for Inst[src]

impl HasSpan for Inst[src]

impl PartialEq<Inst> for Inst[src]

impl StructuralEq for Inst[src]

impl StructuralPartialEq for Inst[src]

Auto Trait Implementations

impl RefUnwindSafe for Inst

impl Send for Inst

impl Sync for Inst

impl Unpin for Inst

impl UnwindSafe for Inst

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.