Trait peroxide::prelude::simpler::SimpleParquet

source ·
pub trait SimpleParquet: Sized {
    // Required methods
    fn write_parquet(&self, path: &str) -> Result<(), Box<dyn Error>>;
    fn read_parquet(path: &str) -> Result<Self, Box<dyn Error>>;
}
Expand description

Simple handle parquet

Required Methods§

source

fn write_parquet(&self, path: &str) -> Result<(), Box<dyn Error>>

source

fn read_parquet(path: &str) -> Result<Self, Box<dyn Error>>

Object Safety§

This trait is not object safe.

Implementors§