[][src]Struct rustc_ap_rustc_data_structures::unify::InPlace

pub struct InPlace<K, V = Vec<VarValue<K>>, L = VecLog<UndoLog<Delegate<K>>>> where
    K: UnifyKey,
    V: VecLike<Delegate<K>>, 
{ /* fields omitted */ }

Backing store for an in-place unification table. Not typically used directly.

Trait Implementations

impl<K, V, L> Clone for InPlace<K, V, L> where
    K: UnifyKey + Clone,
    L: Clone,
    V: VecLike<Delegate<K>> + Clone
[src]

impl<K, V, L> Debug for InPlace<K, V, L> where
    K: UnifyKey + Debug,
    L: Debug,
    V: VecLike<Delegate<K>> + Debug
[src]

impl<K, V, L> Default for InPlace<K, V, L> where
    K: UnifyKey,
    L: Default,
    V: VecLike<Delegate<K>> + Default
[src]

impl<K, V, L> Index<usize> for InPlace<K, V, L> where
    K: UnifyKey,
    V: VecLike<Delegate<K>>, 
[src]

type Output = VarValue<K>

The returned type after indexing.

impl<K, V, L> UnificationStore for InPlace<K, V, L> where
    K: UnifyKey,
    L: Snapshots<UndoLog<Delegate<K>>>,
    V: VecLike<Delegate<K>>, 
[src]

type Snapshot = Snapshot<<L as Snapshots<UndoLog<Delegate<K>>>>::Snapshot>

impl<K, V, L> UnificationStoreBase for InPlace<K, V, L> where
    K: UnifyKey,
    V: VecLike<Delegate<K>>, 
[src]

type Key = K

type Value = <K as UnifyKey>::Value

impl<K, V, L> UnificationStoreMut for InPlace<K, V, L> where
    K: UnifyKey,
    L: UndoLogs<UndoLog<Delegate<K>>>,
    V: VecLike<Delegate<K>>, 
[src]

Auto Trait Implementations

impl<K, V, L> RefUnwindSafe for InPlace<K, V, L> where
    K: RefUnwindSafe,
    L: RefUnwindSafe,
    V: RefUnwindSafe

impl<K, V, L> Send for InPlace<K, V, L> where
    K: Send,
    L: Send,
    V: Send

impl<K, V, L> Sync for InPlace<K, V, L> where
    K: Sync,
    L: Sync,
    V: Sync

impl<K, V, L> Unpin for InPlace<K, V, L> where
    K: Unpin,
    L: Unpin,
    V: Unpin

impl<K, V, L> UnwindSafe for InPlace<K, V, L> where
    K: UnwindSafe,
    L: UnwindSafe,
    V: UnwindSafe

Blanket Implementations

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

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

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

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[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]

impl<E> SpecializationError for E[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.