pub struct ListArrayDecoder<O> {
data_type: DataType,
decoder: Box<dyn ArrayDecoder>,
phantom: PhantomData<O>,
is_nullable: bool,
}
Fields§
§data_type: DataType
§decoder: Box<dyn ArrayDecoder>
§phantom: PhantomData<O>
§is_nullable: bool
Implementations§
Trait Implementations§
Source§impl<O: OffsetSizeTrait> ArrayDecoder for ListArrayDecoder<O>
impl<O: OffsetSizeTrait> ArrayDecoder for ListArrayDecoder<O>
Auto Trait Implementations§
impl<O> Freeze for ListArrayDecoder<O>
impl<O> !RefUnwindSafe for ListArrayDecoder<O>
impl<O> Send for ListArrayDecoder<O>where
O: Send,
impl<O> !Sync for ListArrayDecoder<O>
impl<O> Unpin for ListArrayDecoder<O>where
O: Unpin,
impl<O> !UnwindSafe for ListArrayDecoder<O>
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