pub struct StructArrayDecoder {
data_type: DataType,
decoders: Vec<Box<dyn ArrayDecoder>>,
strict_mode: bool,
is_nullable: bool,
}
Fields§
§data_type: DataType
§decoders: Vec<Box<dyn ArrayDecoder>>
§strict_mode: bool
§is_nullable: bool
Implementations§
Trait Implementations§
Source§impl ArrayDecoder for StructArrayDecoder
impl ArrayDecoder for StructArrayDecoder
Auto Trait Implementations§
impl Freeze for StructArrayDecoder
impl !RefUnwindSafe for StructArrayDecoder
impl Send for StructArrayDecoder
impl !Sync for StructArrayDecoder
impl Unpin for StructArrayDecoder
impl !UnwindSafe for StructArrayDecoder
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