Struct glib::variant::DictEntry [−][src]
pub struct DictEntry<K, V> { /* fields omitted */ }
Expand description
A Dictionary entry.
While GVariant format allows a dictionary entry to be an independent type, typically you’ll need to use this in a dictionary, which is simply an array of dictionary entries. The following code creates a dictionary:
use glib::{Variant, FromVariant, ToVariant}; use glib::variant::DictEntry; let entries = vec![ DictEntry::new("uuid", 1000u32).to_variant(), DictEntry::new("guid", 1001u32).to_variant(), ]; let dict = Variant::from_array::<DictEntry<&str, u32>>(&entries); assert_eq!(dict.n_children(), 2); assert_eq!(dict.type_().to_str(), "a{su}");
Implementations
impl<K, V> DictEntry<K, V> where
K: StaticVariantType + ToVariant + Eq + Hash,
V: StaticVariantType + ToVariant,
impl<K, V> DictEntry<K, V> where
K: StaticVariantType + ToVariant + Eq + Hash,
V: StaticVariantType + ToVariant,
Trait Implementations
Tries to extract a value. Read more
Returns the VariantType
corresponding to Self
.
impl<K, V> ToVariant for DictEntry<K, V> where
K: StaticVariantType + ToVariant + Eq + Hash,
V: StaticVariantType + ToVariant,
impl<K, V> ToVariant for DictEntry<K, V> where
K: StaticVariantType + ToVariant + Eq + Hash,
V: StaticVariantType + ToVariant,
Returns a Variant
clone of self
.
Auto Trait Implementations
impl<K, V> RefUnwindSafe for DictEntry<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> UnwindSafe for DictEntry<K, V> where
K: UnwindSafe,
V: UnwindSafe,