Enum tau_engine::Value[][src]

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.

Tuple Fields of Bool

0: bool
Float(f64)

Represents a float.

Tuple Fields of Float

0: f64
Int(i64)

Represents an integer.

Tuple Fields of Int

0: i64
UInt(u64)

Represents an unsigned integer.

Tuple Fields of UInt

0: u64
String(Cow<'a, str>)

Represents a string.

Tuple Fields of String

0: Cow<'a, str>
Array(&'a dyn Array)

Represents an array.

Tuple Fields of Array

0: &'a dyn Array
Object(&'a dyn Object)

Represents an object.

Tuple Fields of Object

0: &'a dyn 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

Performs the conversion.

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

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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.