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

pub struct ArrowJson {
    pub schema: ArrowJsonSchema,
    pub batches: Vec<ArrowJsonBatch>,
    pub dictionaries: Option<Vec<ArrowJsonDictionaryBatch>>,
}

A struct that represents an Arrow file with a schema and record batches

Fields

schema: ArrowJsonSchemabatches: Vec<ArrowJsonBatch>dictionaries: Option<Vec<ArrowJsonDictionaryBatch>>

Implementations

impl ArrowJson[src]

pub fn equals_reader(&self, reader: &mut dyn RecordBatchReader) -> bool[src]

Compare the Arrow JSON with a record batch reader

Trait Implementations

impl Debug for ArrowJson[src]

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

impl Serialize for ArrowJson[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, 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>,