Enum fontconfig_parser::Value [−][src]
pub enum Value<'a> {
Int(Int),
Double(Double),
String(&'a str),
Const(Constant),
Bool(Bool),
Matrix([Double; 4]),
Range(Int, Int),
CharSet(CharSet),
Property(PropertyKind),
Prefer(Vec<&'a str>),
Accept(Vec<&'a str>),
Default(Vec<&'a str>),
}
Expand description
Runtime typed fontconfig value
Variants
Int(Int)
Tuple Fields of Int
0: Int
Double(Double)
Tuple Fields of Double
0: Double
String(&'a str)
Tuple Fields of String
0: &'a str
Const(Constant)
Tuple Fields of Const
0: Constant
Bool(Bool)
Tuple Fields of Bool
0: Bool
CharSet(CharSet)
Tuple Fields of CharSet
0: CharSet
Property(PropertyKind)
Tuple Fields of Property
0: PropertyKind
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Value<'a>
impl<'a> UnwindSafe for Value<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more