pub enum Object {
    Char(Char),
    Int32(Int<i32>),
    Int64(Int<i64>),
    Float32(Float<f32>),
    Float64(Float<f64>),
    String(_String),
    List(List),
    Bool(Bool),
}
Expand description

supreme enum

Variants

Char(Char)

char object

Int32(Int<i32>)

int32 object

Int64(Int<i64>)

int64 object

Float32(Float<f32>)

int128 object float32 object

Float64(Float<f64>)

float64 object

String(_String)

String object

List(List)

List object

Bool(Bool)

Bool object

Trait Implementations

Performs append

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.