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

Trait Implementations

Tries to extract a value. Read more

Returns the VariantType corresponding to Self.

Returns a Variant clone of self.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.