[−][src]Struct rustc_ap_rustc_data_structures::unify::VarValue
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]
K: UnifyKey + Clone,
<K as UnifyKey>::Value: Clone,
impl<K> Debug for VarValue<K> where
K: UnifyKey + Debug,
<K as UnifyKey>::Value: Debug,
[src]
K: UnifyKey + Debug,
<K as UnifyKey>::Value: Debug,
impl<K> PartialEq<VarValue<K>> for VarValue<K> where
K: UnifyKey + PartialEq<K>,
<K as UnifyKey>::Value: PartialEq<<K as UnifyKey>::Value>,
[src]
K: UnifyKey + PartialEq<K>,
<K as UnifyKey>::Value: PartialEq<<K as UnifyKey>::Value>,
impl<K> StructuralPartialEq for VarValue<K> where
K: UnifyKey,
[src]
K: UnifyKey,
Auto Trait Implementations
impl<K> RefUnwindSafe for VarValue<K> where
K: RefUnwindSafe,
<K as UnifyKey>::Value: RefUnwindSafe,
K: RefUnwindSafe,
<K as UnifyKey>::Value: RefUnwindSafe,
impl<K> Send for VarValue<K> where
K: Send,
<K as UnifyKey>::Value: Send,
K: Send,
<K as UnifyKey>::Value: Send,
impl<K> Sync for VarValue<K> where
K: Sync,
<K as UnifyKey>::Value: Sync,
K: Sync,
<K as UnifyKey>::Value: Sync,
impl<K> Unpin for VarValue<K> where
K: Unpin,
<K as UnifyKey>::Value: Unpin,
K: Unpin,
<K as UnifyKey>::Value: Unpin,
impl<K> UnwindSafe for VarValue<K> where
K: UnwindSafe,
<K as UnifyKey>::Value: UnwindSafe,
K: UnwindSafe,
<K as UnifyKey>::Value: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,
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]
U: From<T>,
impl<E> SpecializationError for E
[src]
default fn not_found<S, T>(
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
[src]
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,