pub struct AppendOnlySegment {
pub version: u32,
pub codec: AppendOnlySegmentCodec,
pub chunk_size: u32,
pub rows: Vec<AppendOnlySegmentRow>,
pub primary_min: Option<Vec<u8>>,
pub primary_max: Option<Vec<u8>>,
pub primary_bloom: Option<AppendOnlySegmentBloom>,
pub chunk_checksums: Vec<AppendOnlySegmentChunkChecksum>,
}Fields§
§version: u32§codec: AppendOnlySegmentCodec§chunk_size: u32§rows: Vec<AppendOnlySegmentRow>§primary_min: Option<Vec<u8>>§primary_max: Option<Vec<u8>>§primary_bloom: Option<AppendOnlySegmentBloom>§chunk_checksums: Vec<AppendOnlySegmentChunkChecksum>Trait Implementations§
Source§impl Clone for AppendOnlySegment
impl Clone for AppendOnlySegment
Source§fn clone(&self) -> AppendOnlySegment
fn clone(&self) -> AppendOnlySegment
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 AppendOnlySegment
impl Debug for AppendOnlySegment
impl Eq for AppendOnlySegment
Source§impl PartialEq for AppendOnlySegment
impl PartialEq for AppendOnlySegment
impl StructuralPartialEq for AppendOnlySegment
Auto Trait Implementations§
impl Freeze for AppendOnlySegment
impl RefUnwindSafe for AppendOnlySegment
impl Send for AppendOnlySegment
impl Sync for AppendOnlySegment
impl Unpin for AppendOnlySegment
impl UnsafeUnpin for AppendOnlySegment
impl UnwindSafe for AppendOnlySegment
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