pub trait Store<T> {
type Key: Key<Value = T>;
// Required method
fn insert(&self, value: T) -> <Self::Key as Key>::Owner;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".