pub struct TableGenerationStats {
pub active_read_generations: usize,
pub max_live_read_generations: usize,
pub cow_clone_count: u64,
pub cow_clone_nanos: u64,
pub estimated_cow_clone_bytes: u64,
pub writer_wait_nanos: u64,
}Fields§
§active_read_generations: usize§max_live_read_generations: usize§cow_clone_count: u64§cow_clone_nanos: u64§estimated_cow_clone_bytes: u64§writer_wait_nanos: u64Trait Implementations§
Source§impl Clone for TableGenerationStats
impl Clone for TableGenerationStats
Source§fn clone(&self) -> TableGenerationStats
fn clone(&self) -> TableGenerationStats
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 moreimpl Copy for TableGenerationStats
Source§impl Debug for TableGenerationStats
impl Debug for TableGenerationStats
Source§impl Default for TableGenerationStats
impl Default for TableGenerationStats
Source§fn default() -> TableGenerationStats
fn default() -> TableGenerationStats
Returns the “default value” for a type. Read more
impl Eq for TableGenerationStats
Source§impl PartialEq for TableGenerationStats
impl PartialEq for TableGenerationStats
impl StructuralPartialEq for TableGenerationStats
Auto Trait Implementations§
impl Freeze for TableGenerationStats
impl RefUnwindSafe for TableGenerationStats
impl Send for TableGenerationStats
impl Sync for TableGenerationStats
impl Unpin for TableGenerationStats
impl UnsafeUnpin for TableGenerationStats
impl UnwindSafe for TableGenerationStats
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more