[−][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().
Methods
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> 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,
fn eq(&self, other: &StableMap<K, V>) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl<K, V> Debug for StableMap<K, V> where
    K: Eq + Hash + Debug,
    V: Debug, [src]
K: Eq + Hash + Debug,
V: Debug,
Auto Trait Implementations
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,
impl<K, V> RefUnwindSafe for StableMap<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe, 
K: RefUnwindSafe,
V: RefUnwindSafe,
Blanket Implementations
impl<T> Erased for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
ⓘImportant traits for &'_ mut Ifn borrow_mut(&mut self) -> &mut T[src]
ⓘImportant traits for &'_ mut I
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,