Enum fontconfig_parser::Expression [−][src]
pub enum Expression {
Simple(Value),
Unary(UnaryOp, Box<Self>),
Binary(BinaryOp, Box<[Self; 2]>),
Ternary(TernaryOp, Box<[Self; 3]>),
List(ListOp, Vec<Self>),
Matrix(Box<[Self; 4]>),
}
Variants
Simple(Value)
Tuple Fields of Simple
0: Value
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