Trait rustc_data_structures::unify::UnificationStoreBase[][src]

pub trait UnificationStoreBase: Index<usize, Output = VarValue<Self::Key>> {
    type Key: UnifyKey;
    type Value: UnifyValue;
    fn len(&self) -> usize;

    fn tag() -> &'static str { ... }
}
Expand description

Largely internal trait implemented by the unification table backing store types. The most common such type is InPlace, which indicates a standard, mutable unification table.

Associated Types

Required methods

Provided methods

Implementors