pub struct RowsSegment {
pub table: String,
pub schema_version: i32,
pub columns: Vec<Column>,
pub blocks: Vec<Vec<SegmentRow>>,
}Fields§
§table: String§schema_version: i32§columns: Vec<Column>§blocks: Vec<Vec<SegmentRow>>Row blocks in wire order; block boundaries are part of the canonical byte stream and are preserved for re-encoding.
Trait Implementations§
Source§impl Clone for RowsSegment
impl Clone for RowsSegment
Source§fn clone(&self) -> RowsSegment
fn clone(&self) -> RowsSegment
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 RowsSegment
impl Debug for RowsSegment
Source§impl PartialEq for RowsSegment
impl PartialEq for RowsSegment
Source§fn eq(&self, other: &RowsSegment) -> bool
fn eq(&self, other: &RowsSegment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RowsSegment
Auto Trait Implementations§
impl Freeze for RowsSegment
impl RefUnwindSafe for RowsSegment
impl Send for RowsSegment
impl Sync for RowsSegment
impl Unpin for RowsSegment
impl UnsafeUnpin for RowsSegment
impl UnwindSafe for RowsSegment
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