pub enum Value<'a> {
    Null,
    Bool(bool),
    Float(f64),
    Int(i64),
    UInt(u64),
    String(Cow<'a, str>),
    Array(&'a dyn Array),
    Object(&'a dyn Object),
}
Expand description

A dynamic data type that the solver can reason on.

Variants

Null

Represents an empty type.

Bool(bool)

Represents a boolean.

Float(f64)

Represents a float.

Int(i64)

Represents an integer.

UInt(u64)

Represents an unsigned integer.

String(Cow<'a, str>)

Represents a string.

Array(&'a dyn Array)

Represents an array.

Object(&'a dyn Object)

Represents an object.

Implementations

Returns true if the Value is an Array.

Returns true if the Value is a Bool.

Returns true if the Value is a Float.

Returns true if the Value is an Int.

Returns true if the Value is a Null.

Returns true if the Value is an Object.

Returns true if the Value is a String.

Returns true if the Value is a UInt.

Return the associated array if the Value is an Array.

Return the associated boolean if the Value is a Bool.

Return the associated f64 if the Value is a Float.

Return the associated i64 if the Value is a Int.

Return the associated () if the Value is a Null.

Return the associated object if the Value is an Object.

Return the associated str if the Value is a String.

Return the associated u64 if the Value is a UInt.

Returns the Value as an i64 if possible.

Currently supports: Int & UInt.

Returns the Value as a String if possible.

Currently supports: Bool, Float, Int, String & UInt.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. 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.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

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

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. 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.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more