pub type EntryRemovalResult<K, V> = Result<((K, V), BTreeMap<K, V>), PopulatedBTreeMap<K, V>>;Expand description
The result of removing an entry from a PopulatedBTreeMap.
Aliased Type§
pub enum EntryRemovalResult<K, V> {
Ok(((K, V), BTreeMap<K, V>)),
Err(PopulatedBTreeMap<K, V>),
}Variants§
Ok(((K, V), BTreeMap<K, V>))
Contains the success value
Err(PopulatedBTreeMap<K, V>)
Contains the error value