Struct arrow_format::ipc::DictionaryBatch
source · pub struct DictionaryBatch {
pub id: i64,
pub data: Option<Box<RecordBatch>>,
pub is_delta: bool,
}
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 for DictionaryBatch
impl PartialEq 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 ==
.source§impl Serialize for DictionaryBatch
impl Serialize for DictionaryBatch
source§impl<'a> TryFrom<DictionaryBatchRef<'a>> for DictionaryBatch
impl<'a> TryFrom<DictionaryBatchRef<'a>> for DictionaryBatch
impl StructuralPartialEq for DictionaryBatch
impl VectorWrite<Offset<DictionaryBatch>> for DictionaryBatch
impl WriteAs<Offset<DictionaryBatch>> for DictionaryBatch
impl WriteAsOffset<DictionaryBatch> for DictionaryBatch
impl WriteAsOptional<Offset<DictionaryBatch>> for DictionaryBatch
Auto Trait Implementations§
impl Freeze for DictionaryBatch
impl RefUnwindSafe for DictionaryBatch
impl Send for DictionaryBatch
impl Sync for DictionaryBatch
impl Unpin for DictionaryBatch
impl UnwindSafe for DictionaryBatch
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