pub struct ArrowJsonColumn {
pub(crate) name: String,
pub count: usize,
pub validity: Option<Vec<u8>>,
pub data: Option<Vec<Value>>,
pub offset: Option<Vec<Value>>,
pub type_id: Option<Vec<i8>>,
pub children: Option<Vec<ArrowJsonColumn>>,
}
Expand description
A struct that partially reads the Arrow JSON column/array
Fields§
§name: String
§count: usize
The number of elements in the column
validity: Option<Vec<u8>>
The validity bitmap to determine null values
data: Option<Vec<Value>>
The data values in the column
offset: Option<Vec<Value>>
The offsets for variable-sized data types
type_id: Option<Vec<i8>>
The type id for union types
children: Option<Vec<ArrowJsonColumn>>
The children columns for nested types
Trait Implementations§
Source§impl Clone for ArrowJsonColumn
impl Clone for ArrowJsonColumn
Source§fn clone(&self) -> ArrowJsonColumn
fn clone(&self) -> ArrowJsonColumn
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ArrowJsonColumn
impl Debug for ArrowJsonColumn
Source§impl<'de> Deserialize<'de> for ArrowJsonColumn
impl<'de> Deserialize<'de> for ArrowJsonColumn
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ArrowJsonColumn
impl RefUnwindSafe for ArrowJsonColumn
impl Send for ArrowJsonColumn
impl Sync for ArrowJsonColumn
impl Unpin for ArrowJsonColumn
impl UnwindSafe for ArrowJsonColumn
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)