#![allow(clippy::module_name_repetitions)]
pub enum InsertError<K, V>
where
K: Clone + Ord + Send + Sync,
V: Clone + Send + Sync,
{
Duplicated((K, V)),
Full((K, V)),
Retry((K, V)),
}
pub enum RemoveError {
Empty(bool),
Retry(bool),
}
pub enum SearchError {
Empty,
Retry,
}