[][src]Struct arrow::ipc::gen::Message::DictionaryBatch

pub struct DictionaryBatch<'a> {
    pub _tab: Table<'a>,
}

For sending dictionary encoding information. Any Field can be dictionary-encoded, but in this case none of its children may be dictionary-encoded. There is one vector / column per dictionary, but that vector / column may be spread across multiple dictionary batches by using the isDelta flag

Fields

_tab: Table<'a>

Implementations

impl<'a> DictionaryBatch<'a>[src]

pub fn init_from_table(table: Table<'a>) -> Self[src]

pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
    _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>,
    args: &'args DictionaryBatchArgs<'args>
) -> WIPOffset<DictionaryBatch<'bldr>>
[src]

pub const VT_ID: VOffsetT[src]

pub const VT_DATA: VOffsetT[src]

pub const VT_ISDELTA: VOffsetT[src]

pub fn id(&self) -> i64[src]

pub fn data(&self) -> Option<RecordBatch<'a>>[src]

pub fn isDelta(&self) -> bool[src]

If isDelta is true the values in the dictionary are to be appended to a dictionary with the indicated id. If isDelta is false this dictionary should replace the existing dictionary.

Trait Implementations

impl<'a> Clone for DictionaryBatch<'a>[src]

impl<'a> Copy for DictionaryBatch<'a>[src]

impl<'a> Debug for DictionaryBatch<'a>[src]

impl<'a> Follow<'a> for DictionaryBatch<'a>[src]

type Inner = DictionaryBatch<'a>

impl<'a> PartialEq<DictionaryBatch<'a>> for DictionaryBatch<'a>[src]

impl<'a> StructuralPartialEq for DictionaryBatch<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for DictionaryBatch<'a>

impl<'a> Send for DictionaryBatch<'a>

impl<'a> Sync for DictionaryBatch<'a>

impl<'a> Unpin for DictionaryBatch<'a>

impl<'a> UnwindSafe for DictionaryBatch<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,