[][src]Struct arrow::util::integration_util::ArrowJsonColumn

pub struct ArrowJsonColumn {
    pub count: usize,
    pub validity: Option<Vec<u8>>,
    pub data: Option<Vec<Value>>,
    pub offset: Option<Vec<Value>>,
    pub children: Option<Vec<ArrowJsonColumn>>,
    // some fields omitted
}

A struct that partially reads the Arrow JSON column/array

Fields

count: usizevalidity: Option<Vec<u8>>data: Option<Vec<Value>>offset: Option<Vec<Value>>children: Option<Vec<ArrowJsonColumn>>

Trait Implementations

impl Clone for ArrowJsonColumn[src]

impl Debug for ArrowJsonColumn[src]

impl<'de> Deserialize<'de> for ArrowJsonColumn[src]

impl Serialize for ArrowJsonColumn[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,