[][src]Struct rustc_data_structures::snapshot_map::SnapshotMap

pub struct SnapshotMap<K, V> where
    K: Hash + Clone + Eq
{ /* fields omitted */ }

Methods

impl<K, V> SnapshotMap<K, V> where
    K: Hash + Clone + Eq
[src]

pub fn clear(&mut self)[src]

pub fn insert(&mut self, key: K, value: V) -> bool[src]

pub fn remove(&mut self, key: K) -> bool[src]

pub fn get(&self, key: &K) -> Option<&V>[src]

pub fn snapshot(&mut self) -> Snapshot[src]

pub fn commit(&mut self, snapshot: Snapshot)[src]

pub fn partial_rollback<F>(
    &mut self,
    snapshot: &Snapshot,
    should_revert_key: &F
) where
    F: Fn(&K) -> bool
[src]

pub fn rollback_to(&mut self, snapshot: Snapshot)[src]

Trait Implementations

impl<K, V> Default for SnapshotMap<K, V> where
    K: Hash + Clone + Eq
[src]

impl<'k, K, V> Index<&'k K> for SnapshotMap<K, V> where
    K: Hash + Clone + Eq
[src]

type Output = V

The returned type after indexing.

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> Erased for T[src]

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

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

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

impl<T> From for T[src]

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

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

impl<E> SpecializationError for E[src]

impl<T> Erased for T