[][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> Index<usize> for InPlace<K> where
    K: UnifyKey
[src]

type Output = VarValue<K>

The returned type after indexing.

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> Debug for InPlace<K> where
    K: UnifyKey + Debug
[src]

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]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

impl<T> Erased for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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.

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

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

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

impl<E> SpecializationError for E[src]