Enum fontconfig_parser::Expression [−][src]
pub enum Expression {
Simple(Value),
Unary(UnaryOp, Vec<Self>),
Binary(BinaryOp, Vec<Self>),
Ternary(TernaryOp, Vec<Self>),
List(ListOp, Vec<Self>),
Matrix(Vec<Self>),
}Variants
Simple(Value)Tuple Fields of Simple
0: ValueMatrix(Vec<Self>)Tuple Fields of Matrix
0: Vec<Self>Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for Expression
impl Send for Expression
impl Sync for Expression
impl Unpin for Expression
impl UnwindSafe for Expression
Blanket Implementations
Mutably borrows from an owned value. Read more