[go: up one dir, main page]

arrow2 0.6.0

Unofficial implementation of Apache Arrow spec in safe Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![deny(missing_docs)]
//! Read and write from and to Apache Avro

pub mod read;

use crate::error::ArrowError;

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