pub struct WriteStats {
pub rows_written: u64,
pub batches_written: u64,
}Expand description
Cumulative write statistics.
Fields§
§rows_written: u64Number of rows accepted by the writer.
batches_written: u64Number of batches accepted by the writer.
Trait Implementations§
Source§impl Clone for WriteStats
impl Clone for WriteStats
Source§fn clone(&self) -> WriteStats
fn clone(&self) -> WriteStats
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 WriteStats
impl Debug for WriteStats
Source§impl Default for WriteStats
impl Default for WriteStats
Source§fn default() -> WriteStats
fn default() -> WriteStats
Returns the “default value” for a type. Read more
Source§impl Hash for WriteStats
impl Hash for WriteStats
Source§impl PartialEq for WriteStats
impl PartialEq for WriteStats
Source§fn eq(&self, other: &WriteStats) -> bool
fn eq(&self, other: &WriteStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for WriteStats
impl Eq for WriteStats
impl StructuralPartialEq for WriteStats
Auto Trait Implementations§
impl Freeze for WriteStats
impl RefUnwindSafe for WriteStats
impl Send for WriteStats
impl Sync for WriteStats
impl Unpin for WriteStats
impl UnsafeUnpin for WriteStats
impl UnwindSafe for WriteStats
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