pub type ContextValue = Kind;
pub enum ContextValue { NullValue(i32), NumberValue(f64), StringValue(String), BoolValue(bool), StructValue(Struct), ListValue(ListValue), }
Represents a null value.
Represents a double value.
Represents a string value.
Represents a boolean value.
Represents a structured value.
Represents a repeated Value.
Value