[][src]Struct moore_svlog::mir::Lvalue

pub struct Lvalue<'a> {
    pub id: NodeId,
    pub origin: NodeId,
    pub env: ParamEnv,
    pub span: Span,
    pub ty: Type<'a>,
    pub kind: LvalueKind<'a>,
}

An lvalue expression.

Fields

id: NodeId

A unique id.

origin: NodeId

The expression node which spawned this lvalue.

env: ParamEnv

The environment within which the lvalue lives.

span: Span

The span in the source file where the lvalue originates from.

ty: Type<'a>

The type of the expression.

kind: LvalueKind<'a>

The expression data.

Trait Implementations

impl<'a> Clone for Lvalue<'a>[src]

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

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

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Lvalue<'a>

impl<'a> Send for Lvalue<'a>

impl<'a> Sync for Lvalue<'a>

impl<'a> Unpin for Lvalue<'a>

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