pub(crate) trait Insert<K: Key, V: Copy> { // Required method fn insert(&mut self, key: K, value: V) -> Result<(), ()>; }
Trait for writing new key/value pairs to a bucket array
Append a new item to its sorting bucket, or return Err(()) if it’s full