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 of Number
0: NumericString(String)Tuple Fields of String
0: StringBoolean(bool)Tuple Fields of Boolean
0: boolExternalInstance(ExternalInstance)Tuple Fields of ExternalInstance
Dictionary(Dictionary)Tuple Fields of Dictionary
0: DictionaryPattern(Pattern)Tuple Fields of Pattern
0: PatternCall(Call)Tuple Fields of Call
0: CallList(TermList)Tuple Fields of List
0: TermListVariable(Symbol)Tuple Fields of Variable
0: SymbolRestVariable(Symbol)Tuple Fields of RestVariable
0: SymbolExpression(Operation)Tuple Fields of Expression
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