Trait arrow::datatypes::JsonSerializable[][src]

pub trait JsonSerializable: 'static {
    fn into_json_value(self) -> Option<Value>;
}
Expand description

Trait declaring any type that is serializable to JSON. This includes all primitive types (bool, i32, etc.).

Required methods

Implementations on Foreign Types

Implementors