[][src]Struct rustc_data_structures::unify::InPlace

pub struct InPlace<K> where
    K: UnifyKey
{ /* fields omitted */ }

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

Trait Implementations

impl<K> Default for InPlace<K> where
    K: UnifyKey
[src]

impl<K> UnificationStore for InPlace<K> where
    K: UnifyKey
[src]

type Key = K

type Value = <K as UnifyKey>::Value

type Snapshot = Snapshot

fn tag() -> &'static str[src]

impl<K> Clone for InPlace<K> where
    K: UnifyKey + Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<K> Index<usize> for InPlace<K> where
    K: UnifyKey
[src]

type Output = VarValue<K>

The returned type after indexing.

impl<K> Debug for InPlace<K> where
    K: UnifyKey + Debug
[src]

Auto Trait Implementations

impl<K> Send for InPlace<K> where
    K: Send,
    <K as UnifyKey>::Value: Send

impl<K> Sync for InPlace<K> where
    K: Sync,
    <K as UnifyKey>::Value: 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<E> SpecializationError for E[src]