[][src]Struct moore_svlog::InstDetails

pub struct InstDetails<'a> {
    pub inst: &'a Inst<'a>,
    pub target: Arc<InstTargetDetails<'a>>,
    pub ports: Arc<PortMapping>,
}

Instantiation details

This struct bundles all the information associated with an instantiation, most importantly the parameter bindings and port connections.

This corresponds to the bar(y) in foo #(x) bar(y);.

Fields

inst: &'a Inst<'a>

The HIR instantiation.

target: Arc<InstTargetDetails<'a>>

The target details.

ports: Arc<PortMapping>

The port connections.

Trait Implementations

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

impl<'a> Deref for InstDetails<'a>[src]

type Target = InstTargetDetails<'a>

The resulting type after dereferencing.

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for InstDetails<'a>

impl<'a> Send for InstDetails<'a>

impl<'a> Sync for InstDetails<'a>

impl<'a> Unpin for InstDetails<'a>

impl<'a> UnwindSafe for InstDetails<'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<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.