Struct serde_json::Map [] [src]

pub struct Map<K, V>(_);

Represents a key/value type.

Methods

impl Map<String, Value>
[src]

Makes a new empty Map.

Makes a new empty Map with the given initial capacity.

Clears the map, removing all values.

Returns a reference to the value corresponding to the key.

The key may be any borrowed form of the map's key type, but the ordering on the borrowed form must match the ordering on the key type.

Returns true if the map contains a value for the specified key.

The key may be any borrowed form of the map's key type, but the ordering on the borrowed form must match the ordering on the key type.

Returns a mutable reference to the value corresponding to the key.

The key may be any borrowed form of the map's key type, but the ordering on the borrowed form must match the ordering on the key type.

Inserts a key-value pair into the map.

If the map did not have this key present, None is returned.

If the map did have this key present, the value is updated, and the old value is returned. The key is not updated, though; this matters for types that can be == without being identical.

Removes a key from the map, returning the value at the key if the key was previously in the map.

The key may be any borrowed form of the map's key type, but the ordering on the borrowed form must match the ordering on the key type.

Returns the number of elements in the map.

Returns true if the map contains no elements.

Gets an iterator over the entries of the map.

Gets a mutable iterator over the entries of the map.

Gets an iterator over the keys of the map.

Gets an iterator over the values of the map.

Trait Implementations

impl Default for Map<String, Value>
[src]

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

impl Clone for Map<String, Value>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Map<String, Value>
[src]

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

This method tests for !=.

impl Debug for Map<String, Value>
[src]

Formats the value using the given formatter.

impl Serialize for Map<String, Value>
[src]

Serialize this value into the given Serde serializer. Read more

impl Deserialize for Map<String, Value>
[src]

Deserialize this value from the given Serde deserializer. Read more

impl<'a> IntoIterator for &'a Map<String, Value>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a> IntoIterator for &'a mut Map<String, Value>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl IntoIterator for Map<String, Value>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more