pub struct SchemaSummary {
pub rows: usize,
pub columns: usize,
/* private fields */
}Expand description
A small, displayable description of a Table’s columns.
Fields§
§rows: usizeNumber of data rows.
columns: usizeNumber of columns.
Implementations§
Source§impl SchemaSummary
impl SchemaSummary
Sourcepub fn column_summaries(&self) -> &[ColumnSummary]
pub fn column_summaries(&self) -> &[ColumnSummary]
Per-column summaries, in column order.
Trait Implementations§
Source§impl Clone for SchemaSummary
impl Clone for SchemaSummary
Source§fn clone(&self) -> SchemaSummary
fn clone(&self) -> SchemaSummary
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 SchemaSummary
impl Debug for SchemaSummary
Auto Trait Implementations§
impl Freeze for SchemaSummary
impl RefUnwindSafe for SchemaSummary
impl Send for SchemaSummary
impl Sync for SchemaSummary
impl Unpin for SchemaSummary
impl UnsafeUnpin for SchemaSummary
impl UnwindSafe for SchemaSummary
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