Enum tycho::ident::NumberIdent[][src]

pub enum NumberIdent {
    Bit,
    Unsigned8,
    Signed8,
    Unsigned16,
    Signed16,
    Unsigned32,
    Signed32,
    Unsigned64,
    Signed64,
    Unsigned128,
    Signed128,
    Float32,
    Float64,
}

Identities for numerical values.

Variants

Bit
Unsigned8
Signed8
Unsigned16
Signed16
Unsigned32
Signed32
Unsigned64
Signed64
Unsigned128
Signed128
Float32
Float64

Trait Implementations

impl Clone for NumberIdent[src]

impl Debug for NumberIdent[src]

impl PartialEq<NumberIdent> for NumberIdent[src]

impl PartialOrd<NumberIdent> for NumberIdent[src]

impl StructuralPartialEq for NumberIdent[src]

Auto Trait Implementations

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, 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>,