Struct arrow_format::ipc::RecordBatch
source · [−]pub struct RecordBatch {
pub length: i64,
pub nodes: Option<Vec<FieldNode>>,
pub buffers: Option<Vec<Buffer>>,
pub compression: Option<Box<BodyCompression>>,
}
Fields
length: i64
nodes: Option<Vec<FieldNode>>
buffers: Option<Vec<Buffer>>
compression: Option<Box<BodyCompression>>
Implementations
sourceimpl RecordBatch
impl RecordBatch
pub fn create(
builder: &mut Builder,
length: impl WriteAsDefault<i64, i64>,
nodes: impl WriteAsOptional<Offset<[FieldNode]>>,
buffers: impl WriteAsOptional<Offset<[Buffer]>>,
compression: impl WriteAsOptional<Offset<BodyCompression>>
) -> Offset<Self>
Trait Implementations
sourceimpl Clone for RecordBatch
impl Clone for RecordBatch
sourcefn clone(&self) -> RecordBatch
fn clone(&self) -> RecordBatch
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for RecordBatch
impl Debug for RecordBatch
sourceimpl<'de> Deserialize<'de> for RecordBatch
impl<'de> Deserialize<'de> for RecordBatch
sourcefn 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
sourceimpl PartialEq<RecordBatch> for RecordBatch
impl PartialEq<RecordBatch> for RecordBatch
sourcefn eq(&self, other: &RecordBatch) -> bool
fn eq(&self, other: &RecordBatch) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RecordBatch) -> bool
fn ne(&self, other: &RecordBatch) -> bool
This method tests for !=
.
sourceimpl Serialize for RecordBatch
impl Serialize for RecordBatch
sourceimpl<'a> TryFrom<RecordBatchRef<'a>> for RecordBatch
impl<'a> TryFrom<RecordBatchRef<'a>> for RecordBatch
impl StructuralPartialEq for RecordBatch
impl VectorWrite<Offset<RecordBatch>> for RecordBatch
impl WriteAs<Offset<RecordBatch>> for RecordBatch
impl WriteAsOffset<RecordBatch> for RecordBatch
impl WriteAsOptional<Offset<RecordBatch>> for RecordBatch
Auto Trait Implementations
impl RefUnwindSafe for RecordBatch
impl Send for RecordBatch
impl Sync for RecordBatch
impl Unpin for RecordBatch
impl UnwindSafe for RecordBatch
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more