Struct tera::Map[][src]

pub struct Map<K, V> { /* fields omitted */ }
Expand description

Re-export Value and other useful things from serde so apps/tools can encode data in Tera types Represents a JSON key/value type.

Implementations

impl Map<String, Value>[src]

Re-export Value and other useful things from serde so apps/tools can encode data in Tera types

pub fn new() -> Map<String, Value>[src]

Makes a new empty Map.

pub fn with_capacity(capacity: usize) -> Map<String, Value>[src]

Makes a new empty Map with the given initial capacity.

pub fn clear(&mut self)[src]

Clears the map, removing all values.

pub fn get<Q>(&self, key: &Q) -> Option<&Value> where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

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.

pub fn contains_key<Q>(&self, key: &Q) -> bool where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

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.

pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut Value> where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

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.

pub fn insert(&mut self, k: String, v: Value) -> Option<Value>[src]

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.

pub fn remove<Q>(&mut self, key: &Q) -> Option<Value> where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

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.

pub fn remove_entry<Q>(&mut self, key: &Q) -> Option<(String, Value)> where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

Removes a key from the map, returning the stored key and value 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.

pub fn append(&mut self, other: &mut Map<String, Value>)[src]

Moves all elements from other into Self, leaving other empty.

pub fn entry<S>(&mut self, key: S) -> Entry<'_> where
    S: Into<String>, 
[src]

Gets the given key’s corresponding entry in the map for in-place manipulation.

pub fn len(&self) -> usize[src]

Returns the number of elements in the map.

pub fn is_empty(&self) -> bool[src]

Returns true if the map contains no elements.

pub fn iter(&self) -> Iter<'_>[src]

Gets an iterator over the entries of the map.

pub fn iter_mut(&mut self) -> IterMut<'_>[src]

Gets a mutable iterator over the entries of the map.

pub fn keys(&self) -> Keys<'_>[src]

Gets an iterator over the keys of the map.

pub fn values(&self) -> Values<'_>[src]

Gets an iterator over the values of the map.

pub fn values_mut(&mut self) -> ValuesMut<'_>[src]

Gets an iterator over mutable values of the map.

Trait Implementations

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

pub fn clone(&self) -> Map<String, Value>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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

pub fn fmt(&self, formatter: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

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

pub fn default() -> Map<String, Value>[src]

Returns the “default value” for a type. Read more

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

pub fn deserialize<D>(
    deserializer: D
) -> Result<Map<String, Value>, <D as Deserializer<'de>>::Error> where
    D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Extend<(String, Value)> for Map<String, Value>[src]

pub fn extend<T>(&mut self, iter: T) where
    T: IntoIterator<Item = (String, Value)>, 
[src]

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

fn extend_one(&mut self, item: A)[src]

🔬 This is a nightly-only experimental API. (extend_one)

Extends a collection with exactly one element.

fn extend_reserve(&mut self, additional: usize)[src]

🔬 This is a nightly-only experimental API. (extend_one)

Reserves capacity in a collection for the given number of additional elements. Read more

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

pub fn from(f: Map<String, Value>) -> Value[src]

Convert map (with string keys) to Value

Examples

use serde_json::{Map, Value};

let mut m = Map::new();
m.insert("Lorem".to_string(), "ipsum".into());
let x: Value = m.into();

impl FromIterator<(String, Value)> for Map<String, Value>[src]

pub fn from_iter<T>(iter: T) -> Map<String, Value> where
    T: IntoIterator<Item = (String, Value)>, 
[src]

Creates a value from an iterator. Read more

impl<'a, Q> Index<&'a Q> for Map<String, Value> where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

Access an element of this map. Panics if the given key is not present in the map.

match *val {
    Value::String(ref s) => Some(s.as_str()),
    Value::Array(ref arr) => arr[0].as_str(),
    Value::Object(ref map) => map["type"].as_str(),
    _ => None,
}

type Output = Value

The returned type after indexing.

pub fn index(&self, index: &Q) -> &Value[src]

Performs the indexing (container[index]) operation. Read more

impl<'a, Q> IndexMut<&'a Q> for Map<String, Value> where
    Q: Ord + Eq + Hash + ?Sized,
    String: Borrow<Q>, 
[src]

Mutably access an element of this map. Panics if the given key is not present in the map.

map["key"] = json!("value");

pub fn index_mut(&mut self, index: &Q) -> &mut Value[src]

Performs the mutable indexing (container[index]) operation. Read more

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

type Item = (&'a String, &'a mut Value)

The type of the elements being iterated over.

type IntoIter = IterMut<'a>

Which kind of iterator are we turning this into?

pub fn into_iter(self) -> <&'a mut Map<String, Value> as IntoIterator>::IntoIter[src]

Creates an iterator from a value. Read more

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

type Item = (String, Value)

The type of the elements being iterated over.

type IntoIter = IntoIter

Which kind of iterator are we turning this into?

pub fn into_iter(self) -> <Map<String, Value> as IntoIterator>::IntoIter[src]

Creates an iterator from a value. Read more

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

type Item = (&'a String, &'a Value)

The type of the elements being iterated over.

type IntoIter = Iter<'a>

Which kind of iterator are we turning this into?

pub fn into_iter(self) -> <&'a Map<String, Value> as IntoIterator>::IntoIter[src]

Creates an iterator from a value. Read more

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

pub fn eq(&self, other: &Map<String, Value>) -> bool[src]

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

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

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

pub fn serialize<S>(
    &self,
    serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
    S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

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

Auto Trait Implementations

impl<K, V> RefUnwindSafe for Map<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

impl<K, V> Send for Map<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for Map<K, V> where
    K: Sync,
    V: Sync

impl<K, V> Unpin for Map<K, V>

impl<K, V> UnwindSafe for Map<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]