Struct arrow_format::ipc::DictionaryBatch
source · pub struct DictionaryBatch {
pub id: i64,
pub data: Option<Box<RecordBatch>>,
pub is_delta: bool,
}
Available on crate feature
ipc
only.Fields§
§id: i64
§data: Option<Box<RecordBatch>>
§is_delta: bool
Implementations§
source§impl DictionaryBatch
impl DictionaryBatch
pub fn create(
builder: &mut Builder,
id: impl WriteAsDefault<i64, i64>,
data: impl WriteAsOptional<Offset<RecordBatch>>,
is_delta: impl WriteAsDefault<bool, bool>
) -> Offset<Self>
Trait Implementations§
source§impl Clone for DictionaryBatch
impl Clone for DictionaryBatch
source§fn clone(&self) -> DictionaryBatch
fn clone(&self) -> DictionaryBatch
Returns a copy 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 moresource§impl Debug for DictionaryBatch
impl Debug for DictionaryBatch
source§impl<'de> Deserialize<'de> for DictionaryBatch
impl<'de> Deserialize<'de> for DictionaryBatch
source§fn 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
source§impl PartialEq<DictionaryBatch> for DictionaryBatch
impl PartialEq<DictionaryBatch> for DictionaryBatch
source§fn eq(&self, other: &DictionaryBatch) -> bool
fn eq(&self, other: &DictionaryBatch) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.