[][src]Enum jddf::schema::Type

pub enum Type {
    Boolean,
    Float32,
    Float64,
    Int8,
    Uint8,
    Int16,
    Uint16,
    Int32,
    Uint32,
    String,
    Timestamp,
}

The values that the "type" keyword may check for.

In a certain sense, you can consider these types to be JSON's "primitive" types, with the remaining two types, arrays and objects, being the "complex" types covered by other keywords.

Variants

Boolean

The "true" or "false" JSON values.

Float32

A floating-point number. Signals the intention that the data is meant to be a single-precision float.

Float64

A floating-point number. Signals the intention that the data is meant to be a double-precision float.

Int8

An integer in the range covered by i8.

Uint8

An integer in the range covered by u8.

Int16

An integer in the range covered by i16.

Uint16

An integer in the range covered by u16.

Int32

An integer in the range covered by i32.

Uint32

An integer in the range covered by u32.

String

Any JSON string.

Timestamp

A string encoding an RFC3339 timestamp.

Trait Implementations

impl Clone for Type[src]

impl Debug for Type[src]

impl Eq for Type[src]

impl Hash for Type[src]

impl PartialEq<Type> for Type[src]

impl StructuralEq for Type[src]

impl StructuralPartialEq for Type[src]

Auto Trait Implementations

impl RefUnwindSafe for Type

impl Send for Type

impl Sync for Type

impl Unpin for Type

impl UnwindSafe for Type

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.