[][src]Enum isla_lib::ir::UVal

pub enum UVal<'ir, B> {
    Uninit(&'ir Ty<Name>),
    Init(Val<B>),
}

A UVal is a potentially uninitialized Val.

Variants

Uninit(&'ir Ty<Name>)
Init(Val<B>)

Trait Implementations

impl<'ir, B: Clone> Clone for UVal<'ir, B>[src]

impl<'ir, B: Debug> Debug for UVal<'ir, B>[src]

Auto Trait Implementations

impl<'ir, B> RefUnwindSafe for UVal<'ir, B> where
    B: RefUnwindSafe

impl<'ir, B> Send for UVal<'ir, B> where
    B: Send

impl<'ir, B> Sync for UVal<'ir, B> where
    B: Sync

impl<'ir, B> Unpin for UVal<'ir, B> where
    B: Unpin

impl<'ir, B> UnwindSafe for UVal<'ir, B> where
    B: UnwindSafe

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

type Output = T

Should always be Self

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.