Enum twig::operator::OperatorKind
[−]
[src]
pub enum OperatorKind {
Unary {
value: &'static str,
},
Binary {
value: &'static str,
associativity: Associativity,
},
Other,
}Operator kind.
Variants
Unary | Single argument operator, i.e negation. Fields
| ||||
Binary | Two argument operator, i.e sum. Fields
| ||||
Other | Any operator handled by extension (i.e. the "=" operator). |