enum BufferInner {
Full {
levels: Vec<i16>,
nulls: BooleanBufferBuilder,
max_level: i16,
},
Mask {
nulls: BooleanBufferBuilder,
},
}Variants§
Full
Compute levels and null mask
Mask
Only compute null bitmask - requires max level to be 1
This is an optimisation for the common case of a nullable scalar column, as decoding the definition level data is only required when decoding nested structures
Fields
§
nulls: BooleanBufferBuilderAuto Trait Implementations§
impl !Freeze for BufferInner
impl RefUnwindSafe for BufferInner
impl Send for BufferInner
impl Sync for BufferInner
impl Unpin for BufferInner
impl UnwindSafe for BufferInner
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