Type Definition nvim_types::Dictionary
source · [−]pub type Dictionary = Collection<KeyValuePair>;Implementations
Trait Implementations
sourceimpl Debug for Dictionary
impl Debug for Dictionary
sourceimpl Display for Dictionary
impl Display for Dictionary
sourceimpl<K, V> From<HashMap<K, V, RandomState>> for Dictionary where
String: From<K>,
Object: From<V>,
impl<K, V> From<HashMap<K, V, RandomState>> for Dictionary where
String: From<K>,
Object: From<V>,
sourcefn from(hashmap: StdHashMap<K, V>) -> Self
fn from(hashmap: StdHashMap<K, V>) -> Self
Converts to this type from the input type.
sourceimpl<K, V> FromIterator<(K, V)> for Dictionary where
K: Into<String>,
V: Into<Object>,
impl<K, V> FromIterator<(K, V)> for Dictionary where
K: Into<String>,
V: Into<Object>,
sourcefn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self
Creates a value from an iterator. Read more
sourceimpl<S: Into<String>> Index<S> for Dictionary
impl<S: Into<String>> Index<S> for Dictionary
sourceimpl<S: Into<String>> IndexMut<S> for Dictionary
impl<S: Into<String>> IndexMut<S> for Dictionary
sourceimpl IntoIterator for Dictionary
impl IntoIterator for Dictionary
type IntoIter = DictIterator
type IntoIter = DictIterator
Which kind of iterator are we turning this into?
type Item = <DictIterator as Iterator>::Item
type Item = <DictIterator as Iterator>::Item
The type of the elements being iterated over.