Struct dict::DictEntry [] [src]

pub struct DictEntry<T> {
    pub key: String,
    pub val: T,
    // some fields omitted
}

Fields

Trait Implementations

impl<T> Hash for DictEntry<T>
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<T> Send for DictEntry<T> where
    T: Send

impl<T> Sync for DictEntry<T> where
    T: Sync