Struct json_api::value::map::Map [] [src]

pub struct Map<K, V> where
    K: Eq + Hash
{ /* fields omitted */ }

Methods

impl<K, V> Map<K, V> where
    K: Eq + Hash
[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl<K: Clone, V: Clone> Clone for Map<K, V> where
    K: Eq + Hash
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<K: Debug, V: Debug> Debug for Map<K, V> where
    K: Eq + Hash
[src]

[src]

Formats the value using the given formatter.

impl<K: Eq, V: Eq> Eq for Map<K, V> where
    K: Eq + Hash
[src]

impl<K: PartialEq, V: PartialEq> PartialEq for Map<K, V> where
    K: Eq + Hash
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<K, V> Default for Map<K, V> where
    K: Eq + Hash
[src]

[src]

Returns the "default value" for a type. Read more

impl<K, V> Extend<(K, V)> for Map<K, V> where
    K: Eq + Hash
[src]

[src]

Extends a collection with the contents of an iterator. Read more

impl<K, V> FromIterator<(K, V)> for Map<K, V> where
    K: Eq + Hash
[src]

[src]

Creates a value from an iterator. Read more

impl<K, V> IntoIterator for Map<K, V> where
    K: Eq + Hash
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a, K, V> IntoIterator for &'a Map<K, V> where
    K: Eq + Hash
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a, K, V> IntoIterator for &'a mut Map<K, V> where
    K: Eq + Hash
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'de, K, V> Deserialize<'de> for Map<K, V> where
    K: Deserialize<'de> + Eq + Hash,
    V: Deserialize<'de>, 
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl<K, V> Serialize for Map<K, V> where
    K: Eq + Hash + Serialize,
    V: Serialize
[src]

[src]

Serialize this value into the given Serde serializer. Read more