pub struct BTreeDatumStore { /* private fields */ }Expand description
In-memory DatumStore backed by a BTreeMap; the kernel default.
Implementations§
Trait Implementations§
Source§impl Clone for BTreeDatumStore
impl Clone for BTreeDatumStore
Source§fn clone(&self) -> BTreeDatumStore
fn clone(&self) -> BTreeDatumStore
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl DatumStore for BTreeDatumStore
impl DatumStore for BTreeDatumStore
Source§impl Debug for BTreeDatumStore
impl Debug for BTreeDatumStore
Source§impl Default for BTreeDatumStore
impl Default for BTreeDatumStore
Source§fn default() -> BTreeDatumStore
fn default() -> BTreeDatumStore
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BTreeDatumStore
impl RefUnwindSafe for BTreeDatumStore
impl Send for BTreeDatumStore
impl Sync for BTreeDatumStore
impl Unpin for BTreeDatumStore
impl UnsafeUnpin for BTreeDatumStore
impl UnwindSafe for BTreeDatumStore
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more