1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![deny(missing_docs)]
//! Convert data between the Arrow memory format and JSON line-delimited records.

pub mod read;
pub mod write;

use crate::error::ArrowError;

impl From<serde_json::error::Error> for ArrowError {
    fn from(error: serde_json::error::Error) -> Self {
        ArrowError::External("".to_string(), Box::new(error))
    }
}