iotdb 0.0.7

Apache IotDB Client written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use thiserror::Error;

#[derive(Error, Debug)]
pub enum IotDBError {
    #[error("IO error: {0}")]
    IO(#[from] std::io::Error),

    #[error("IoTDB thrift rpc connection error")]
    Thrift(#[from] thrift::Error),

    #[error("IoTDB Polars DataFrame error")]
    Polars(#[from] polars::error::PolarsError),
}