pub struct NodeDistribution {
pub leaves: usize,
pub node4: usize,
pub node16: usize,
pub node48: usize,
pub node256: usize,
}Expand description
Distribution of node types in the tree.
Fields§
§leaves: usize§node4: usize§node16: usize§node48: usize§node256: usizeTrait Implementations§
Source§impl Clone for NodeDistribution
impl Clone for NodeDistribution
Source§fn clone(&self) -> NodeDistribution
fn clone(&self) -> NodeDistribution
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 NodeDistribution
impl Debug for NodeDistribution
Source§impl Default for NodeDistribution
impl Default for NodeDistribution
Source§fn default() -> NodeDistribution
fn default() -> NodeDistribution
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NodeDistribution
impl RefUnwindSafe for NodeDistribution
impl Send for NodeDistribution
impl Sync for NodeDistribution
impl Unpin for NodeDistribution
impl UnsafeUnpin for NodeDistribution
impl UnwindSafe for NodeDistribution
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