[][src]Struct moore_svlog::hir::InstTarget

pub struct InstTarget {
    pub id: NodeId,
    pub name: Spanned<Name>,
    pub span: Span,
    pub pos_params: Vec<PosParam>,
    pub named_params: Vec<NamedParam>,
}

An instantiation target.

In an instantiation foo #(...) a(), b(), c(); this struct represents the foo #(...) part. Multiple instantiations (a(), b(), c()) may share the same target.

Fields

id: NodeIdname: Spanned<Name>span: Spanpos_params: Vec<PosParam>named_params: Vec<NamedParam>

Trait Implementations

impl<'a, 'hir> Alloc<'a, 'a, InstTarget> for Arena<'hir> where
    'hir: 'a, 

impl Debug for InstTarget[src]

impl Eq for InstTarget[src]

impl HasDesc for InstTarget[src]

impl HasSpan for InstTarget[src]

impl PartialEq<InstTarget> for InstTarget[src]

impl StructuralEq for InstTarget[src]

impl StructuralPartialEq for InstTarget[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, 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.