pub trait Features<I>: Copywhere
I: Interner,{
// Required methods
fn generic_const_exprs(self) -> bool;
fn coroutine_clone(self) -> bool;
fn associated_const_equality(self) -> bool;
fn feature_bound_holds_in_crate(
self,
symbol: <I as Interner>::Symbol,
) -> bool;
}
Required Methods§
fn generic_const_exprs(self) -> bool
fn coroutine_clone(self) -> bool
fn associated_const_equality(self) -> bool
fn feature_bound_holds_in_crate(self, symbol: <I as Interner>::Symbol) -> bool
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.