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