ContextValue

Type Alias ContextValue 

Source
pub type ContextValue = Kind;

Aliased Type§

pub enum ContextValue {
    NullValue(i32),
    NumberValue(f64),
    StringValue(String),
    BoolValue(bool),
    StructValue(Struct),
    ListValue(ListValue),
}

Variants§

§

NullValue(i32)

Represents a null value.

§

NumberValue(f64)

Represents a double value.

§

StringValue(String)

Represents a string value.

§

BoolValue(bool)

Represents a boolean value.

§

StructValue(Struct)

Represents a structured value.

§

ListValue(ListValue)

Represents a repeated Value.