pub struct ColumnarSegmentStats {
pub row_count: usize,
pub column_count: usize,
pub size_bytes: usize,
}Expand description
セグメント統計情報。
Fields§
§row_count: usizeセグメント内の行数。
column_count: usizeセグメント内のカラム数。
size_bytes: usizeセグメントのサイズ(バイト)。
Trait Implementations§
Source§impl Clone for ColumnarSegmentStats
impl Clone for ColumnarSegmentStats
Source§fn clone(&self) -> ColumnarSegmentStats
fn clone(&self) -> ColumnarSegmentStats
Returns a duplicate of the value. Read more
1.0.0 · 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 ColumnarSegmentStats
impl RefUnwindSafe for ColumnarSegmentStats
impl Send for ColumnarSegmentStats
impl Sync for ColumnarSegmentStats
impl Unpin for ColumnarSegmentStats
impl UnwindSafe for ColumnarSegmentStats
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