Trait ChainableExtensions
pub trait ChainableExtensions {
// Required methods
fn contains<T>(&self) -> bool
where T: Send + Sync + 'static;
fn get<T>(&self) -> Option<&T>
where T: Send + Sync + 'static;
}
Required 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.