Enum polar_core::terms::Value [−][src]
pub enum Value {
Number(Numeric),
String(String),
Boolean(bool),
ExternalInstance(ExternalInstance),
Dictionary(Dictionary),
Pattern(Pattern),
Call(Call),
List(TermList),
Variable(Symbol),
RestVariable(Symbol),
Expression(Operation),
}Variants
Number(Numeric)
Tuple Fields
0: NumericString(String)
Tuple Fields
0: StringBoolean(bool)
Tuple Fields
0: boolExternalInstance(ExternalInstance)
Tuple Fields
Dictionary(Dictionary)
Tuple Fields
0: DictionaryPattern(Pattern)
Tuple Fields
0: PatternCall(Call)
Tuple Fields
0: CallList(TermList)
Tuple Fields
0: TermListVariable(Symbol)
Tuple Fields
0: SymbolRestVariable(Symbol)
Tuple Fields
0: SymbolExpression(Operation)
Tuple Fields
0: OperationImplementations
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for Value
impl UnwindSafe for Value
Blanket Implementations
Mutably borrows from an owned value. Read more