pub struct RecordBatch {
pub schema: Arc<Schema>,
pub columns: Vec<ColumnData>,
pub num_rows: usize,
}Expand description
A record batch of data.
Fields§
§schema: Arc<Schema>Schema of the batch.
columns: Vec<ColumnData>Column data.
num_rows: usizeNumber of rows.
Implementations§
Source§impl RecordBatch
impl RecordBatch
Sourcepub fn new(
schema: Arc<Schema>,
columns: Vec<ColumnData>,
num_rows: usize,
) -> Result<Self>
pub fn new( schema: Arc<Schema>, columns: Vec<ColumnData>, num_rows: usize, ) -> Result<Self>
Create a new record batch.
Sourcepub fn column(&self, index: usize) -> Option<&ColumnData>
pub fn column(&self, index: usize) -> Option<&ColumnData>
Get a column by index.
Sourcepub fn column_by_name(&self, name: &str) -> Option<&ColumnData>
pub fn column_by_name(&self, name: &str) -> Option<&ColumnData>
Get a column by name.
Trait Implementations§
Source§impl Clone for RecordBatch
impl Clone for RecordBatch
Source§fn clone(&self) -> RecordBatch
fn clone(&self) -> RecordBatch
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 RecordBatch
impl RefUnwindSafe for RecordBatch
impl Send for RecordBatch
impl Sync for RecordBatch
impl Unpin for RecordBatch
impl UnsafeUnpin for RecordBatch
impl UnwindSafe for RecordBatch
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more