[][src]Trait arrow::array::JsonEqual

pub trait JsonEqual {
    fn equals_json(&self, json: &[&Value]) -> bool;

    fn equals_json_values(&self, json: &[Value]) -> bool { ... }
}

Trait for comparing arrow array with json array

Required methods

fn equals_json(&self, json: &[&Value]) -> bool

Checks whether arrow array equals to json array.

Loading content...

Provided methods

fn equals_json_values(&self, json: &[Value]) -> bool

Checks whether arrow array equals to json array.

Loading content...

Implementors

impl JsonEqual for BinaryArray[src]

impl JsonEqual for FixedSizeBinaryArray[src]

impl JsonEqual for FixedSizeListArray[src]

impl JsonEqual for LargeBinaryArray[src]

impl JsonEqual for LargeListArray[src]

impl JsonEqual for LargeStringArray[src]

impl JsonEqual for ListArray[src]

impl JsonEqual for NullArray[src]

impl JsonEqual for StringArray[src]

impl JsonEqual for StructArray[src]

impl JsonEqual for UnionArray[src]

impl<T: ArrowPrimitiveType> JsonEqual for DictionaryArray<T>[src]

impl<T: ArrowPrimitiveType> JsonEqual for PrimitiveArray<T>[src]

Implement array equals for numeric type

Loading content...