[][src]Struct rustc_data_structures::unify::VarValue

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

Value of a unification key. We implement Tarjan's union-find algorithm: when two keys are unified, one of them is converted into a "redirect" pointing at the other. These redirects form a DAG: the roots of the DAG (nodes that are not redirected) are each associated with a value of type V and a rank. The rank is used to keep the DAG relatively balanced, which helps keep the running time of the algorithm under control. For more information, see http://en.wikipedia.org/wiki/Disjoint-set_data_structure.

Trait Implementations

impl<K> Clone for VarValue<K> where
    K: UnifyKey + Clone,
    <K as UnifyKey>::Value: Clone
[src]

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

Performs copy-assignment from source. Read more

impl<K> Debug for VarValue<K> where
    K: UnifyKey + Debug,
    <K as UnifyKey>::Value: Debug
[src]

impl<K> PartialEq<VarValue<K>> for VarValue<K> where
    K: UnifyKey + PartialEq<K>,
    <K as UnifyKey>::Value: PartialEq<<K as UnifyKey>::Value>, 
[src]

Auto Trait Implementations

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

impl<K> Sync for VarValue<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> 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<T> Any for T where
    T: 'static + ?Sized
[src]

impl<E> SpecializationError for E[src]