Enum fontconfig_parser::Expression [−][src]
pub enum Expression<'a> {
Simple(Value<'a>),
Unary(Box<Self>, UnaryOp),
Binary(Box<Self>, Box<Self>, BinaryOp),
Ternary(Box<Self>, Box<Self>, Box<Self>, TernaryOp),
List(Vec<Self>, ListOp),
}
Variants
Simple(Value<'a>)
Tuple Fields of Simple
0: Value<'a>
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<'a> RefUnwindSafe for Expression<'a>
impl<'a> Send for Expression<'a>
impl<'a> Sync for Expression<'a>
impl<'a> Unpin for Expression<'a>
impl<'a> UnwindSafe for Expression<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more