pub struct CellTreeStats {
pub bit_count: u64,
pub cell_count: u64,
}
Expand description
Cell tree storage stats.
Fields§
§bit_count: u64
Total number of bits in tree.
cell_count: u64
Total number of cells in tree.
Implementations§
Source§impl CellTreeStats
impl CellTreeStats
Trait Implementations§
Source§impl Add<Size> for CellTreeStats
impl Add<Size> for CellTreeStats
Source§impl Add for CellTreeStats
impl Add for CellTreeStats
Source§impl AddAssign<Size> for CellTreeStats
impl AddAssign<Size> for CellTreeStats
Source§fn add_assign(&mut self, rhs: Size)
fn add_assign(&mut self, rhs: Size)
Performs the
+=
operation. Read moreSource§impl AddAssign for CellTreeStats
impl AddAssign for CellTreeStats
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+=
operation. Read moreSource§impl Clone for CellTreeStats
impl Clone for CellTreeStats
Source§fn clone(&self) -> CellTreeStats
fn clone(&self) -> CellTreeStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CellTreeStats
impl Debug for CellTreeStats
Source§impl Default for CellTreeStats
impl Default for CellTreeStats
Source§fn default() -> CellTreeStats
fn default() -> CellTreeStats
Returns the “default value” for a type. Read more
Source§impl From<Size> for CellTreeStats
impl From<Size> for CellTreeStats
Source§impl PartialEq for CellTreeStats
impl PartialEq for CellTreeStats
Source§impl Sub for CellTreeStats
impl Sub for CellTreeStats
Source§impl SubAssign<Size> for CellTreeStats
impl SubAssign<Size> for CellTreeStats
Source§fn sub_assign(&mut self, rhs: Size)
fn sub_assign(&mut self, rhs: Size)
Performs the
-=
operation. Read moreSource§impl SubAssign for CellTreeStats
impl SubAssign for CellTreeStats
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-=
operation. Read moreSource§impl Sum for CellTreeStats
impl Sum for CellTreeStats
impl Copy for CellTreeStats
impl Eq for CellTreeStats
impl StructuralPartialEq for CellTreeStats
Auto Trait Implementations§
impl Freeze for CellTreeStats
impl RefUnwindSafe for CellTreeStats
impl Send for CellTreeStats
impl Sync for CellTreeStats
impl Unpin for CellTreeStats
impl UnwindSafe for CellTreeStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compares
self
to key
and returns true
if they are equal.