pub struct DumpRowCountsReport {
pub counts: Vec<TableRowCount>,
}Expand description
Result of [Engine::dump_row_counts]. Canonical tables only;
projection / FTS / vec0 shadow tables are excluded. Order matches
fathomdb_schema::CANONICAL_TABLES.
Fields§
§counts: Vec<TableRowCount>Trait Implementations§
Source§impl Clone for DumpRowCountsReport
impl Clone for DumpRowCountsReport
Source§fn clone(&self) -> DumpRowCountsReport
fn clone(&self) -> DumpRowCountsReport
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 DumpRowCountsReport
impl Debug for DumpRowCountsReport
impl Eq for DumpRowCountsReport
Source§impl PartialEq for DumpRowCountsReport
impl PartialEq for DumpRowCountsReport
impl StructuralPartialEq for DumpRowCountsReport
Auto Trait Implementations§
impl Freeze for DumpRowCountsReport
impl RefUnwindSafe for DumpRowCountsReport
impl Send for DumpRowCountsReport
impl Sync for DumpRowCountsReport
impl Unpin for DumpRowCountsReport
impl UnsafeUnpin for DumpRowCountsReport
impl UnwindSafe for DumpRowCountsReport
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