pub struct ListLikeArrayDecoder<O, const IS_VIEW: bool> {
field: FieldRef,
decoder: Box<dyn ArrayDecoder>,
phantom: PhantomData<O>,
ignore_type_conflicts: bool,
is_nullable: bool,
}Fields§
§field: FieldRef§decoder: Box<dyn ArrayDecoder>§phantom: PhantomData<O>§ignore_type_conflicts: bool§is_nullable: boolImplementations§
Source§impl<O: OffsetSizeTrait, const IS_VIEW: bool> ListLikeArrayDecoder<O, IS_VIEW>
impl<O: OffsetSizeTrait, const IS_VIEW: bool> ListLikeArrayDecoder<O, IS_VIEW>
pub fn new( ctx: &DecoderContext, data_type: &DataType, is_nullable: bool, ) -> Result<Self, ArrowError>
Trait Implementations§
Auto Trait Implementations§
impl<O, const IS_VIEW: bool> Freeze for ListLikeArrayDecoder<O, IS_VIEW>
impl<O, const IS_VIEW: bool> !RefUnwindSafe for ListLikeArrayDecoder<O, IS_VIEW>
impl<O, const IS_VIEW: bool> Send for ListLikeArrayDecoder<O, IS_VIEW>where
O: Send,
impl<O, const IS_VIEW: bool> !Sync for ListLikeArrayDecoder<O, IS_VIEW>
impl<O, const IS_VIEW: bool> Unpin for ListLikeArrayDecoder<O, IS_VIEW>where
O: Unpin,
impl<O, const IS_VIEW: bool> UnsafeUnpin for ListLikeArrayDecoder<O, IS_VIEW>
impl<O, const IS_VIEW: bool> !UnwindSafe for ListLikeArrayDecoder<O, IS_VIEW>
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