Struct rustc_ap_rustc_data_structures::unify::VarValue [−][src]
pub struct VarValue<K> where
K: UnifyKey, { /* fields omitted */ }
Expand description
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> PartialEq<VarValue<K>> for VarValue<K> where
K: PartialEq<K> + UnifyKey,
<K as UnifyKey>::Value: PartialEq<<K as UnifyKey>::Value>,
[src]
impl<K> PartialEq<VarValue<K>> for VarValue<K> where
K: PartialEq<K> + UnifyKey,
<K as UnifyKey>::Value: PartialEq<<K as UnifyKey>::Value>,
[src]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> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,