pub trait TypeInterfaceExt: TypeInterface {
// Provided method
fn common_iface_fields<'a>(
&'a self,
rhs: &'a Self,
) -> impl Iterator<Item = (&'a Interned<str>, &'a Ty, &'a Ty)> { ... }
}Expand description
Extension common methods for TypeInterface.
Provided Methods§
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.