Struct arrow_integration_test::ArrowJsonColumn
source · pub struct ArrowJsonColumn {
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>>,
/* private fields */
}
Expand description
A struct that partially reads the Arrow JSON column/array
Fields§
§count: usize
§validity: Option<Vec<u8>>
§data: Option<Vec<Value>>
§offset: Option<Vec<Value>>
§type_id: Option<Vec<i8>>
§children: Option<Vec<ArrowJsonColumn>>
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