pub enum FixedLenBinaryPageState<'a, P> {
Optional(DefLevelsDecoder<'a>, FixexBinaryIter<'a>),
Required(FixexBinaryIter<'a>),
RequiredDictionary(Dictionary<'a, P>),
OptionalDictionary(DefLevelsDecoder<'a>, Dictionary<'a, P>),
}
Variants§
Optional(DefLevelsDecoder<'a>, FixexBinaryIter<'a>)
Required(FixexBinaryIter<'a>)
RequiredDictionary(Dictionary<'a, P>)
OptionalDictionary(DefLevelsDecoder<'a>, Dictionary<'a, P>)
Implementations§
Auto Trait Implementations§
impl<'a, P> Freeze for FixedLenBinaryPageState<'a, P>where
P: Freeze,
impl<'a, P> RefUnwindSafe for FixedLenBinaryPageState<'a, P>where
P: RefUnwindSafe,
impl<'a, P> Send for FixedLenBinaryPageState<'a, P>where
P: Send,
impl<'a, P> Sync for FixedLenBinaryPageState<'a, P>where
P: Sync,
impl<'a, P> Unpin for FixedLenBinaryPageState<'a, P>where
P: Unpin,
impl<'a, P> UnwindSafe for FixedLenBinaryPageState<'a, P>where
P: UnwindSafe,
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