// Copyright 2017 Serde Developers // // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // option. This file may not be copied, modified, or distributed // except according to those terms.
usecrate::value::Value; use serde::{de, ser}; use std::borrow::Borrow; use std::fmt::{self, Debug}; use std::hash::Hash; use std::iter::FromIterator; use std::ops;
#[cfg(not(feature = "preserve_order"))] use std::collections::{btree_map, BTreeMap};
#[cfg(feature = "preserve_order")] use indexmap::{self, IndexMap};
#[cfg(not(feature = "preserve_order"))] type MapImpl<K, V> = BTreeMap<K, V>; #[cfg(feature = "preserve_order")] type MapImpl<K, V> = IndexMap<K, V>;
impl Map<String, Value> { /// Makes a new empty Map. #[inline] pubfn new() -> Self {
Map {
map: MapImpl::new(),
}
}
#[cfg(not(feature = "preserve_order"))] /// Makes a new empty Map with the given initial capacity. #[inline] pubfn with_capacity(capacity: usize) -> Self { // does not support with_capacity let _ = capacity;
Map {
map: BTreeMap::new(),
}
}
#[cfg(feature = "preserve_order")] /// Makes a new empty Map with the given initial capacity. #[inline] pubfn with_capacity(capacity: usize) -> Self {
Map {
map: IndexMap::with_capacity(capacity),
}
}
/// Clears the map, removing all values. #[inline] pubfn clear(&mutself) { self.map.clear()
}
/// 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. #[inline] pubfn get<Q: ?Sized>(&self, key: &Q) -> Option<&Value> where
String: Borrow<Q>,
Q: Ord + Eq + Hash,
{ self.map.get(key)
}
/// 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. #[inline] pubfn contains_key<Q: ?Sized>(&self, key: &Q) -> bool where
String: Borrow<Q>,
Q: Ord + Eq + Hash,
{ self.map.contains_key(key)
}
/// 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. #[inline] pubfn get_mut<Q: ?Sized>(&mutself, key: &Q) -> Option<&mut Value> where
String: Borrow<Q>,
Q: Ord + Eq + Hash,
{ self.map.get_mut(key)
}
/// 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. #[inline] pubfn insert(&mutself, k: String, v: Value) -> Option<Value> { self.map.insert(k, v)
}
/// 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. #[inline] pubfn remove<Q: ?Sized>(&mutself, key: &Q) -> Option<Value> where
String: Borrow<Q>,
Q: Ord + Eq + Hash,
{ self.map.remove(key)
}
/// Gets the given key's corresponding entry in the map for in-place /// manipulation. pubfn entry<S>(&mutself, key: S) -> Entry<'_> where
S: Into<String>,
{ #[cfg(feature = "preserve_order")] use indexmap::map::Entry as EntryImpl; #[cfg(not(feature = "preserve_order"))] use std::collections::btree_map::Entry as EntryImpl;
/// Access an element of this map. Panics if the given key is not present in the /// map. impl<'a, Q: ?Sized> ops::Index<&'a Q> for Map<String, Value> where
String: Borrow<Q>,
Q: Ord + Eq + Hash,
{ type Output = Value;
/// Mutably access an element of this map. Panics if the given key is not /// present in the map. impl<'a, Q: ?Sized> ops::IndexMut<&'a Q> for Map<String, Value> where
String: Borrow<Q>,
Q: Ord + Eq + Hash,
{ fn index_mut(&mutself, index: &Q) -> &mut Value { self.map.get_mut(index).expect("no entry found for key")
}
}
/// A view into a single entry in a map, which may either be vacant or occupied. /// This enum is constructed from the [`entry`] method on [`Map`]. /// /// [`entry`]: struct.Map.html#method.entry /// [`Map`]: struct.Map.html pubenum Entry<'a> { /// A vacant Entry.
Vacant(VacantEntry<'a>), /// An occupied Entry.
Occupied(OccupiedEntry<'a>),
}
/// A vacant Entry. It is part of the [`Entry`] enum. /// /// [`Entry`]: enum.Entry.html pubstruct VacantEntry<'a> {
vacant: VacantEntryImpl<'a>,
}
/// An occupied Entry. It is part of the [`Entry`] enum. /// /// [`Entry`]: enum.Entry.html pubstruct OccupiedEntry<'a> {
occupied: OccupiedEntryImpl<'a>,
}
#[cfg(not(feature = "preserve_order"))] type VacantEntryImpl<'a> = btree_map::VacantEntry<'a, String, Value>; #[cfg(feature = "preserve_order")] type VacantEntryImpl<'a> = indexmap::map::VacantEntry<'a, String, Value>;
#[cfg(not(feature = "preserve_order"))] type OccupiedEntryImpl<'a> = btree_map::OccupiedEntry<'a, String, Value>; #[cfg(feature = "preserve_order")] type OccupiedEntryImpl<'a> = indexmap::map::OccupiedEntry<'a, String, Value>;
impl<'a> Entry<'a> { /// Returns a reference to this entry's key. pubfn key(&self) -> &String { match *self {
Entry::Vacant(ref e) => e.key(),
Entry::Occupied(ref e) => e.key(),
}
}
/// Ensures a value is in the entry by inserting the default if empty, and /// returns a mutable reference to the value in the entry. pubfn or_insert(self, default: Value) -> &'a mut Value { matchself {
Entry::Vacant(entry) => entry.insert(default),
Entry::Occupied(entry) => entry.into_mut(),
}
}
/// Ensures a value is in the entry by inserting the result of the default /// function if empty, and returns a mutable reference to the value in the /// entry. pubfn or_insert_with<F>(self, default: F) -> &'a mut Value where
F: FnOnce() -> Value,
{ matchself {
Entry::Vacant(entry) => entry.insert(default()),
Entry::Occupied(entry) => entry.into_mut(),
}
}
}
impl<'a> VacantEntry<'a> { /// Gets a reference to the key that would be used when inserting a value /// through the VacantEntry. #[inline] pubfn key(&self) -> &String { self.vacant.key()
}
/// Sets the value of the entry with the VacantEntry's key, and returns a /// mutable reference to it. #[inline] pubfn insert(self, value: Value) -> &'a mut Value { self.vacant.insert(value)
}
}
impl<'a> OccupiedEntry<'a> { /// Gets a reference to the key in the entry. #[inline] pubfn key(&self) -> &String { self.occupied.key()
}
/// Gets a reference to the value in the entry. #[inline] pubfn get(&self) -> &Value { self.occupied.get()
}
/// Gets a mutable reference to the value in the entry. #[inline] pubfn get_mut(&mutself) -> &mut Value { self.occupied.get_mut()
}
/// Converts the entry into a mutable reference to its value. #[inline] pubfn into_mut(self) -> &'a mut Value { self.occupied.into_mut()
}
/// Sets the value of the entry with the `OccupiedEntry`'s key, and returns /// the entry's old value. #[inline] pubfn insert(&mutself, value: Value) -> Value { self.occupied.insert(value)
}
/// Takes the value of the entry out of the map, and returns it. #[inline] pubfn remove(self) -> Value { self.occupied.remove()
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.