pub struct RowGroupMetadata {
pub columns: Vec<ColumnMetadata>,
pub num_rows: i64,
pub total_byte_size: i64,
}Expand description
Metadata for a row group
Fields§
§columns: Vec<ColumnMetadata>Column chunks in this row group
num_rows: i64Total number of rows
total_byte_size: i64Total byte size of the row group
Trait Implementations§
Source§impl Clone for RowGroupMetadata
impl Clone for RowGroupMetadata
Source§fn clone(&self) -> RowGroupMetadata
fn clone(&self) -> RowGroupMetadata
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 moreAuto Trait Implementations§
impl Freeze for RowGroupMetadata
impl RefUnwindSafe for RowGroupMetadata
impl Send for RowGroupMetadata
impl Sync for RowGroupMetadata
impl Unpin for RowGroupMetadata
impl UnsafeUnpin for RowGroupMetadata
impl UnwindSafe for RowGroupMetadata
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