[][src]Enum basic::mach::Val

pub enum Val {
    String(Rc<str>),
    Single(f32),
    Double(f64),
    Integer(i16),
    Return(Address),
    Next(Address),
}

Variants

String(Rc<str>)
Single(f32)
Double(f64)
Integer(i16)
Return(Address)
Next(Address)

Trait Implementations

impl Clone for Val[src]

impl Debug for Val[src]

impl Display for Val[src]

impl<'_> From<&'_ str> for Val[src]

impl PartialEq<Val> for Val[src]

impl StructuralPartialEq for Val[src]

impl TryFrom<Option<u16>> for Val[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Val> for LineNumber[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Val> for u16[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Val> for i16[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Val> for u32[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Val> for usize[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Val> for f32[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Val> for f64[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Val> for Rc<str>[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<usize> for Val[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl !RefUnwindSafe for Val

impl !Send for Val

impl !Sync for Val

impl Unpin for Val

impl UnwindSafe for Val

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,