Trait alloc::collections::btree::Recover
source · trait Recover<Q: ?Sized> {
type Key;
// Required methods
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>;
}