[−][src]Struct rustc_ap_rustc_data_structures::stable_map::StableMap
A deterministic wrapper around FxHashMap that does not provide iteration support.
It supports insert, remove, get and get_mut functions from FxHashMap.
It also allows to convert hashmap to a sorted vector with the method into_sorted_vector()
.
Implementations
impl<K, V> StableMap<K, V> where
K: Eq + Hash,
[src]
K: Eq + Hash,
pub fn new() -> StableMap<K, V>
[src]
pub fn into_sorted_vector(self) -> Vec<(K, V)> where
K: Ord + Copy,
[src]
K: Ord + Copy,
pub fn entry(&mut self, k: K) -> Entry<K, V>
[src]
pub fn get<Q: ?Sized>(&self, k: &Q) -> Option<&V> where
K: Borrow<Q>,
Q: Hash + Eq,
[src]
K: Borrow<Q>,
Q: Hash + Eq,
pub fn get_mut<Q: ?Sized>(&mut self, k: &Q) -> Option<&mut V> where
K: Borrow<Q>,
Q: Hash + Eq,
[src]
K: Borrow<Q>,
Q: Hash + Eq,
pub fn insert(&mut self, k: K, v: V) -> Option<V>
[src]
pub fn remove<Q: ?Sized>(&mut self, k: &Q) -> Option<V> where
K: Borrow<Q>,
Q: Hash + Eq,
[src]
K: Borrow<Q>,
Q: Hash + Eq,
Trait Implementations
impl<K: Clone, V: Clone> Clone for StableMap<K, V>
[src]
impl<K, V> Debug for StableMap<K, V> where
K: Eq + Hash + Debug,
V: Debug,
[src]
K: Eq + Hash + Debug,
V: Debug,
impl<K, V> Default for StableMap<K, V> where
K: Eq + Hash,
[src]
K: Eq + Hash,
impl<K, V> Eq for StableMap<K, V> where
K: Eq + Hash,
V: Eq,
[src]
K: Eq + Hash,
V: Eq,
impl<K, V> PartialEq<StableMap<K, V>> for StableMap<K, V> where
K: Eq + Hash,
V: PartialEq,
[src]
K: Eq + Hash,
V: PartialEq,
Auto Trait Implementations
impl<K, V> RefUnwindSafe for StableMap<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for StableMap<K, V> where
K: Send,
V: Send,
K: Send,
V: Send,
impl<K, V> Sync for StableMap<K, V> where
K: Sync,
V: Sync,
K: Sync,
V: Sync,
impl<K, V> Unpin for StableMap<K, V> where
K: Unpin,
V: Unpin,
K: Unpin,
V: Unpin,
impl<K, V> UnwindSafe for StableMap<K, V> where
K: UnwindSafe,
V: UnwindSafe,
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[src]
impl<T> Erased for T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<E> SpecializationError for E
[src]
default fn not_found<S, T>(
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
[src]
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,