[][src]Enum g1::NamelessValue

pub enum NamelessValue {
    Str(Arc<str>),
    Var(u32),
}

A nameless representation of values.

Variants

Str(Arc<str>)

A string.

Var(u32)

A variable.

Trait Implementations

impl<'de> Deserialize<'de> for NamelessValue[src]

impl StructuralEq for NamelessValue[src]

impl PartialOrd<NamelessValue> for NamelessValue[src]

impl Debug for NamelessValue[src]

impl Serialize for NamelessValue[src]

impl Hash for NamelessValue[src]

impl StructuralPartialEq for NamelessValue[src]

impl Eq for NamelessValue[src]

impl PartialEq<NamelessValue> for NamelessValue[src]

impl Ord for NamelessValue[src]

impl Clone for NamelessValue[src]

Auto Trait Implementations

Blanket Implementations

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 = !

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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