Struct gmime::Variant [−]
A generic immutable value capable of carrying various types.
See the module documentation for more details.
Methods
impl Variant
[−]
impl Variant
pub fn type_(&self) -> &VariantTy
[−]
pub fn type_(&self) -> &VariantTy
Returns the type of the value.
pub fn is<T>(&self) -> bool where
T: StaticVariantType,
[−]
pub fn is<T>(&self) -> bool where
T: StaticVariantType,
Returns true
if the type of the value corresponds to T
.
pub fn get<T>(&self) -> Option<T> where
T: FromVariant,
[−]
pub fn get<T>(&self) -> Option<T> where
T: FromVariant,
Tries to extract a value of type T
.
Returns Some
if T
matches the variant's type.
pub fn get_str(&self) -> Option<&str>
[−]
pub fn get_str(&self) -> Option<&str>
Tries to extract a &str
.
Returns Some
if the variant has a string type (s
, o
or g
type
strings).