Enum entity::NumberType[][src]

pub enum NumberType {
    F32,
    F64,
    I128,
    I16,
    I32,
    I64,
    I8,
    Isize,
    U128,
    U16,
    U32,
    U64,
    U8,
    Usize,
}

Auto-generated discriminant enum variants

Variants

F32
F64
I128
I16
I32
I64
I8
Isize
U128
U16
U32
U64
U8
Usize

Trait Implementations

impl Clone for NumberType[src]

impl Copy for NumberType[src]

impl Debug for NumberType[src]

impl Display for NumberType[src]

impl Eq for NumberType[src]

impl<'_enum> From<&'_enum Number> for NumberType[src]

impl From<Number> for NumberType[src]

impl From<NumberType> for ValueType[src]

fn from(t: NumberType) -> Self[src]

Converts number type (subclass of primitive type) to a value type

impl FromStr for NumberType[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl PartialEq<NumberType> for NumberType[src]

impl StructuralEq for NumberType[src]

impl StructuralPartialEq for NumberType[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> DynClone for T where
    T: Clone
[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.