pub struct DictionaryBatch<'a> {
pub _tab: Table<'a>,
}
Expand description
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§
Source§impl<'a> DictionaryBatch<'a>
impl<'a> DictionaryBatch<'a>
pub const VT_ID: VOffsetT = 4u16
pub const VT_DATA: VOffsetT = 6u16
pub const VT_ISDELTA: VOffsetT = 8u16
pub unsafe fn init_from_table(table: Table<'a>) -> Self
pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>( _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>, args: &'args DictionaryBatchArgs<'args>, ) -> WIPOffset<DictionaryBatch<'bldr>>
pub fn id(&self) -> i64
pub fn data(&self) -> Option<RecordBatch<'a>>
Trait Implementations§
Source§impl<'a> Clone for DictionaryBatch<'a>
impl<'a> Clone for DictionaryBatch<'a>
Source§fn clone(&self) -> DictionaryBatch<'a>
fn clone(&self) -> DictionaryBatch<'a>
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<'a> Follow<'a> for DictionaryBatch<'a>
impl<'a> Follow<'a> for DictionaryBatch<'a>
Source§impl<'a> PartialEq for DictionaryBatch<'a>
impl<'a> PartialEq for DictionaryBatch<'a>
Source§impl Verifiable for DictionaryBatch<'_>
impl Verifiable for DictionaryBatch<'_>
Source§fn run_verifier(
v: &mut Verifier<'_, '_>,
pos: usize,
) -> Result<(), InvalidFlatbuffer>
fn run_verifier( v: &mut Verifier<'_, '_>, pos: usize, ) -> Result<(), InvalidFlatbuffer>
Runs the verifier for this type, assuming its at position
pos
in the verifier’s buffer.
Should not need to be called directly.impl<'a> Copy for DictionaryBatch<'a>
impl<'a> StructuralPartialEq for DictionaryBatch<'a>
Auto Trait Implementations§
impl<'a> Freeze for DictionaryBatch<'a>
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§
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