pub struct RowGroupTableEntry {
pub row_start: u64,
pub row_count: u64,
pub data_offset: u64,
pub compressed_size: u64,
pub column_chunk_offsets: Vec<ColumnChunkOffset>,
pub checksum: Option<u32>,
}Expand description
RowGroup テーブルの 1 エントリ。
Fields§
§row_start: u64RowGroup の開始行。
row_count: u64RowGroup 行数。
data_offset: u64セグメント先頭からの RowGroup データ開始オフセット。
compressed_size: u64RowGroup の圧縮サイズ合計。
column_chunk_offsets: Vec<ColumnChunkOffset>RowGroup 内の各カラムチャンクの相対オフセット。
checksum: Option<u32>checksum_scope = Chunk の場合のチェックサム。
Trait Implementations§
Source§impl Clone for RowGroupTableEntry
impl Clone for RowGroupTableEntry
Source§fn clone(&self) -> RowGroupTableEntry
fn clone(&self) -> RowGroupTableEntry
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 RowGroupTableEntry
impl Debug for RowGroupTableEntry
Source§impl<'de> Deserialize<'de> for RowGroupTableEntry
impl<'de> Deserialize<'de> for RowGroupTableEntry
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
Source§impl PartialEq for RowGroupTableEntry
impl PartialEq for RowGroupTableEntry
Source§impl Serialize for RowGroupTableEntry
impl Serialize for RowGroupTableEntry
impl StructuralPartialEq for RowGroupTableEntry
Auto Trait Implementations§
impl Freeze for RowGroupTableEntry
impl RefUnwindSafe for RowGroupTableEntry
impl Send for RowGroupTableEntry
impl Sync for RowGroupTableEntry
impl Unpin for RowGroupTableEntry
impl UnsafeUnpin for RowGroupTableEntry
impl UnwindSafe for RowGroupTableEntry
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