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
sourceimpl 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
sourceimpl Clone for DictionaryBatch
impl Clone for DictionaryBatch
sourcefn clone(&self) -> DictionaryBatch
fn clone(&self) -> DictionaryBatch
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 DictionaryBatch
impl Debug for DictionaryBatch
sourceimpl<'de> Deserialize<'de> for DictionaryBatch
impl<'de> Deserialize<'de> for DictionaryBatch
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<DictionaryBatch> for DictionaryBatch
impl PartialEq<DictionaryBatch> for DictionaryBatch
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &DictionaryBatch) -> bool
fn ne(&self, other: &DictionaryBatch) -> bool
This method tests for !=
.
sourceimpl Serialize for DictionaryBatch
impl Serialize for DictionaryBatch
sourceimpl<'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 RefUnwindSafe for DictionaryBatch
impl Send for DictionaryBatch
impl Sync for DictionaryBatch
impl Unpin for DictionaryBatch
impl UnwindSafe for DictionaryBatch
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