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

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

Trait for comparing arrow array with json array

Required Methods

Checks whether arrow array equals to json array.

Provided Methods

Checks whether arrow array equals to json array.

Implementors