pub struct TableShardStats {
pub name: String,
pub rows_seen: u64,
pub rows_selected: u64,
pub classification: ShardTableClassification,
}Expand description
Per-table sharding statistics
Fields§
§name: String§rows_seen: u64§rows_selected: u64§classification: ShardTableClassificationTrait Implementations§
Source§impl Clone for TableShardStats
impl Clone for TableShardStats
Source§fn clone(&self) -> TableShardStats
fn clone(&self) -> TableShardStats
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 TableShardStats
impl Debug for TableShardStats
Auto Trait Implementations§
impl Freeze for TableShardStats
impl RefUnwindSafe for TableShardStats
impl Send for TableShardStats
impl Sync for TableShardStats
impl Unpin for TableShardStats
impl UnwindSafe for TableShardStats
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