pub trait KeyValue: Sized {
type Key: Ord + Clone;
type Value: Clone;
type Keys<'keys>: Iterator<Item = &'keys Self::Key> + 'keys
where Self: 'keys,
Self::Key: 'keys;
// Required methods
fn capacity(&self) -> Option<u32>;
fn len(&self) -> u32;
fn get<K: Borrow<Self::Key>>(&self, key: K) -> Option<&Self::Value>;
fn take<K: Borrow<Self::Key>>(&mut self, key: K) -> Option<Self::Value>;
fn try_add(
&mut self,
key: Self::Key,
value: Self::Value
) -> Result<(), (Self::Key, Self::Value)>;
fn keys(&self) -> Self::Keys<'_>;
// Provided methods
fn is_empty(&self) -> bool { ... }
fn contains_key<K: Borrow<Self::Key>>(&self, key: K) -> bool { ... }
}
Expand description
Key-value container with capacity.
Required Associated Types§
type Key: Ord + Clone
type Value: Clone
type Keys<'keys>: Iterator<Item = &'keys Self::Key> + 'keys where Self: 'keys, Self::Key: 'keys
Required Methods§
sourcefn get<K: Borrow<Self::Key>>(&self, key: K) -> Option<&Self::Value>
fn get<K: Borrow<Self::Key>>(&self, key: K) -> Option<&Self::Value>
Returns value asssociated with the given key.
sourcefn take<K: Borrow<Self::Key>>(&mut self, key: K) -> Option<Self::Value>
fn take<K: Borrow<Self::Key>>(&mut self, key: K) -> Option<Self::Value>
Takes value asssociated with the given key.
Provided Methods§
sourcefn contains_key<K: Borrow<Self::Key>>(&self, key: K) -> bool
fn contains_key<K: Borrow<Self::Key>>(&self, key: K) -> bool
Returns true
if the underlying container has given the key.