[][src]Enum moore_svlog::ParamEnvSource

pub enum ParamEnvSource<'hir> {
    ModuleInst {
        module: NodeId,
        inst: NodeId,
        env: ParamEnv,
        pos: &'hir [PosParam],
        named: &'hir [NamedParam],
    },
}

A location that implies a parameter environment.

Variants

ModuleInst

Fields of ModuleInst

module: NodeIdinst: NodeIdenv: 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>

impl<'hir> Send for ParamEnvSource<'hir>

impl<'hir> Sync for ParamEnvSource<'hir>

impl<'hir> Unpin for ParamEnvSource<'hir>

impl<'hir> UnwindSafe for ParamEnvSource<'hir>

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.