pub(crate) enum Codec {
Stateless,
Dictionary(RowConverter, OwnedRow),
Struct(RowConverter, OwnedRow),
List(RowConverter),
}
Variants§
Stateless
No additional codec state is necessary
Dictionary(RowConverter, OwnedRow)
A row converter for the dictionary values and the encoding of a row containing only nulls
Struct(RowConverter, OwnedRow)
A row converter for the child fields and the encoding of a row containing only nulls
List(RowConverter)
A row converter for the child field
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Codec
impl RefUnwindSafe for Codec
impl Send for Codec
impl Sync for Codec
impl Unpin for Codec
impl UnwindSafe for Codec
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