[][src]Struct moore_svlog::InstDetails

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

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

hir: &'a Inst<'a>

The HIR instantiation.

target: Arc<InstTargetDetails<'a>>

The target details.

ports: Arc<PortMapping<'a>>

The port connections.

inner_env: ParamEnv

The parameter environment generated by the instantiation, including any implicit parameters due to interface ports.

Trait Implementations

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

Auto Trait Implementations

impl<'a> !RefUnwindSafe for InstDetails<'a>[src]

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

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

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

impl<'a> !UnwindSafe for InstDetails<'a>[src]

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> Pointable for T

type Init = T

The type for initializers.

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.