plotlars-core 0.12.1

Core types and traits for plotlars
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod error;
pub use error::PlotlarsError;

mod csv;
pub use self::csv::CsvReader;

mod parquet;
pub use parquet::ParquetReader;

#[cfg(feature = "format-json")]
mod json;
#[cfg(feature = "format-json")]
pub use json::JsonReader;

#[cfg(feature = "format-excel")]
mod excel;
#[cfg(feature = "format-excel")]
pub use excel::ExcelReader;