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