pub trait Container {
type Value: ?Sized;
// Required method
fn is_disjoint(
&self,
self_val: &Self::Value,
other: &Self,
other_val: &Self::Value,
) -> bool;
}Required Associated Types§
Required Methods§
Sourcefn is_disjoint(
&self,
self_val: &Self::Value,
other: &Self,
other_val: &Self::Value,
) -> bool
fn is_disjoint( &self, self_val: &Self::Value, other: &Self, other_val: &Self::Value, ) -> 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.