Skip to main content

BoundVarKinds

Trait BoundVarKinds 

Source
pub trait BoundVarKinds<I: Interner>:
    Copy
    + Debug
    + Hash
    + Eq
    + SliceLike<Item = BoundVariableKind<I>>
    + Default {
    // Required method
    fn from_vars(
        cx: I,
        iter: impl IntoIterator<Item = BoundVariableKind<I>>,
    ) -> Self;
}

Required Methods§

Source

fn from_vars( cx: I, iter: impl IntoIterator<Item = BoundVariableKind<I>>, ) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§