blob: 8b7dc07063b626e99d9593805f4658544cefbffa [file] [log] [blame]
mod node;
mod search;
pub mod map;
pub mod set;
#[doc(hidden)]
trait Recover<Q: ?Sized> {
type Key;
fn get(&self, key: &Q) -> Option<&Self::Key>;
fn take(&mut self, key: &Q) -> Option<Self::Key>;
fn replace(&mut self, key: Self::Key) -> Option<Self::Key>;
}