EntryRemovalResult

Type Alias EntryRemovalResult 

Source
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§

§1.0.0

Ok(((K, V), BTreeMap<K, V>))

Contains the success value

§1.0.0

Err(PopulatedBTreeMap<K, V>)

Contains the error value