pub(crate) trait Insert<K: Key, V: Copy> {
// Required method
fn insert(&mut self, key: K, value: V) -> Result<(), ()>;
}Expand description
Trait for writing new key/value pairs to a bucket array
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".