pub struct DeltaCommitReport {
pub num_files_added: Option<i64>,
pub num_bytes_added: Option<i64>,
pub num_files_removed: Option<i64>,
pub num_bytes_removed: Option<i64>,
pub num_rows_inserted: Option<i64>,
pub num_rows_removed: Option<i64>,
pub num_rows_updated: Option<i64>,
pub file_size_histogram: Option<DeltaFileSizeHistogram>,
}Expand description
Commit report metrics.
Fields§
§num_files_added: Option<i64>§num_bytes_added: Option<i64>§num_files_removed: Option<i64>§num_bytes_removed: Option<i64>§num_rows_inserted: Option<i64>§num_rows_removed: Option<i64>§num_rows_updated: Option<i64>§file_size_histogram: Option<DeltaFileSizeHistogram>Trait Implementations§
Source§impl Clone for DeltaCommitReport
impl Clone for DeltaCommitReport
Source§fn clone(&self) -> DeltaCommitReport
fn clone(&self) -> DeltaCommitReport
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 DeltaCommitReport
impl Debug for DeltaCommitReport
Source§impl Default for DeltaCommitReport
impl Default for DeltaCommitReport
Source§fn default() -> DeltaCommitReport
fn default() -> DeltaCommitReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeltaCommitReport
impl<'de> Deserialize<'de> for DeltaCommitReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DeltaCommitReport
Source§impl PartialEq for DeltaCommitReport
impl PartialEq for DeltaCommitReport
Source§impl Serialize for DeltaCommitReport
impl Serialize for DeltaCommitReport
impl StructuralPartialEq for DeltaCommitReport
Auto Trait Implementations§
impl Freeze for DeltaCommitReport
impl RefUnwindSafe for DeltaCommitReport
impl Send for DeltaCommitReport
impl Sync for DeltaCommitReport
impl Unpin for DeltaCommitReport
impl UnsafeUnpin for DeltaCommitReport
impl UnwindSafe for DeltaCommitReport
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