Enum dengine::Dypes[][src]

pub enum Dypes {
    Uint(u64),
    Int(i64),
    Float(f64),
    String(String),
    Bytes(Vec<u8>),
    Null,
}

Variants

Trait Implementations

impl From<Dypes> for Value
[src]

Performs the conversion.

impl ConvIr<Dypes> for DypesIr
[src]

impl FromValue for Dypes
[src]

Will panic if could not convert v to Self.

Will return Err(Error::FromValueError(v)) if could not convert v to Self.

Will return Err(Error::FromValueError(v)) if v is not convertible to Self.

impl From<Value> for Dypes
[src]

Performs the conversion.

impl From<Dypes> for Value
[src]

Performs the conversion.

impl From<Value> for Dypes
[src]

Performs the conversion.

impl Clone for Dypes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Dypes
[src]

Formats the value using the given formatter. Read more

impl From<String> for Dypes
[src]

Performs the conversion.

impl<'a> From<&'a str> for Dypes
[src]

Performs the conversion.

impl From<bool> for Dypes
[src]

Performs the conversion.

impl From<Dypes> for Option<String>
[src]

Performs the conversion.

impl From<Dypes> for Option<bool>
[src]

Performs the conversion.

impl From<u64> for Dypes
[src]

Performs the conversion.

impl From<u32> for Dypes
[src]

Performs the conversion.

impl From<i64> for Dypes
[src]

Performs the conversion.

impl From<i32> for Dypes
[src]

Performs the conversion.

impl From<f64> for Dypes
[src]

Performs the conversion.

impl From<f32> for Dypes
[src]

Performs the conversion.

impl From<Dypes> for Option<u64>
[src]

Performs the conversion.

impl From<Dypes> for Option<i64>
[src]

Performs the conversion.

impl From<Dypes> for Option<u32>
[src]

Performs the conversion.

impl From<Dypes> for Option<i32>
[src]

Performs the conversion.

impl From<Dypes> for Option<f64>
[src]

Performs the conversion.

impl From<Dypes> for Option<f32>
[src]

Performs the conversion.

impl From<Dypes> for Option<Rnd2>
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Dypes

impl Sync for Dypes