pub struct FixtureTableCount {
pub table: &'static str,
pub rows: u64,
}Expand description
Per-table row count captured by a schema v2 dry run.
Fields§
§table: &'static strTable inspected.
rows: u64Rows currently present in the table.
Trait Implementations§
Source§impl Clone for FixtureTableCount
impl Clone for FixtureTableCount
Source§fn clone(&self) -> FixtureTableCount
fn clone(&self) -> FixtureTableCount
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 FixtureTableCount
impl Debug for FixtureTableCount
Source§impl PartialEq for FixtureTableCount
impl PartialEq for FixtureTableCount
Source§fn eq(&self, other: &FixtureTableCount) -> bool
fn eq(&self, other: &FixtureTableCount) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for FixtureTableCount
impl StructuralPartialEq for FixtureTableCount
Auto Trait Implementations§
impl Freeze for FixtureTableCount
impl RefUnwindSafe for FixtureTableCount
impl Send for FixtureTableCount
impl Sync for FixtureTableCount
impl Unpin for FixtureTableCount
impl UnsafeUnpin for FixtureTableCount
impl UnwindSafe for FixtureTableCount
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