pub trait ParamEnv<I: Interner>:
    Copy
    + Debug
    + Hash
    + Eq
    + TypeFoldable<I> {
    // Required method
    fn caller_bounds(self) -> impl SliceLike<Item = I::Clause>;
}Required Methods§
fn caller_bounds(self) -> impl SliceLike<Item = I::Clause>
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.