[][src]Enum moore_svlog::ParamEnvSource

pub enum ParamEnvSource<'hir> {
    ModuleInst {
        module: Ref<'hir, Module<'hir>>,
        env: ParamEnv,
        pos: &'hir [PosParam],
        named: &'hir [NamedParam],
    },
    InterfaceInst {
        interface: Ref<'hir, Interface<'hir>>,
        env: ParamEnv,
        pos: &'hir [PosParam],
        named: &'hir [NamedParam],
    },
}

A location that implies a parameter environment.

Variants

ModuleInst

Fields of ModuleInst

module: Ref<'hir, Module<'hir>>env: ParamEnvpos: &'hir [PosParam]named: &'hir [NamedParam]
InterfaceInst

Fields of InterfaceInst

interface: Ref<'hir, Interface<'hir>>env: ParamEnvpos: &'hir [PosParam]named: &'hir [NamedParam]

Trait Implementations

impl<'hir> Clone for ParamEnvSource<'hir>[src]

impl<'hir> Copy for ParamEnvSource<'hir>[src]

impl<'hir> Debug for ParamEnvSource<'hir>[src]

impl<'hir> Eq for ParamEnvSource<'hir>[src]

impl<'hir> Hash for ParamEnvSource<'hir>[src]

impl<'hir> PartialEq<ParamEnvSource<'hir>> for ParamEnvSource<'hir>[src]

impl<'hir> StructuralEq for ParamEnvSource<'hir>[src]

impl<'hir> StructuralPartialEq for ParamEnvSource<'hir>[src]

Auto Trait Implementations

impl<'hir> !RefUnwindSafe for ParamEnvSource<'hir>[src]

impl<'hir> Send for ParamEnvSource<'hir>[src]

impl<'hir> Sync for ParamEnvSource<'hir>[src]

impl<'hir> Unpin for ParamEnvSource<'hir>[src]

impl<'hir> !UnwindSafe for ParamEnvSource<'hir>[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> 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.