Trait chalk_solve::rust_ir::Anonymize[][src]

pub trait Anonymize<I: Interner> {
    fn anonymize(&self) -> Vec<VariableKind<I>>;
}

Required methods

Utility function that converts from a list of generic arguments which have associated data (WithKind<I, T>) to a list of “anonymous” generic parameters that just preserves their kinds (VariableKind<I>). Often convenient in lowering.

Implementations on Foreign Types

Implementors