pub struct TableRowCount {
pub name: String,
pub rows: u64,
}Expand description
Single canonical-table row count emitted by [Engine::dump_row_counts].
Fields§
§name: String§rows: u64Trait Implementations§
Source§impl Clone for TableRowCount
impl Clone for TableRowCount
Source§fn clone(&self) -> TableRowCount
fn clone(&self) -> TableRowCount
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 moreSource§impl Debug for TableRowCount
impl Debug for TableRowCount
impl Eq for TableRowCount
Source§impl PartialEq for TableRowCount
impl PartialEq for TableRowCount
Source§fn eq(&self, other: &TableRowCount) -> bool
fn eq(&self, other: &TableRowCount) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TableRowCount
Auto Trait Implementations§
impl Freeze for TableRowCount
impl RefUnwindSafe for TableRowCount
impl Send for TableRowCount
impl Sync for TableRowCount
impl Unpin for TableRowCount
impl UnsafeUnpin for TableRowCount
impl UnwindSafe for TableRowCount
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