pub struct Statistic {
pub rotate_right_inner: u64,
pub rotate_left_inner: u64,
pub merge_with_left_inner: u64,
pub merge_with_right_inner: u64,
pub rotate_right_leaf: u64,
pub rotate_left_leaf: u64,
pub merge_with_left_leaf: u64,
pub merge_with_right_leaf: u64,
}
Expand description
Statistic data used to guide the perf tuning
Fields§
§rotate_right_inner: u64
§rotate_left_inner: u64
§merge_with_left_inner: u64
§merge_with_right_inner: u64
§rotate_right_leaf: u64
§rotate_left_leaf: u64
§merge_with_left_leaf: u64
§merge_with_right_leaf: u64
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Statistic
impl RefUnwindSafe for Statistic
impl Send for Statistic
impl Sync for Statistic
impl Unpin for Statistic
impl UnwindSafe for Statistic
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