Trait memtable_core::exts::prelude::ToCsv[][src]

pub trait ToCsv {
    fn to_csv<W: Write>(&self, writer: W) -> Result<()>;

    fn to_csv_str(&self) -> Result<String> { ... }
fn to_csv_file<P: AsRef<Path>>(&self, p: P) -> Result<()> { ... } }
This is supported on csv only.
Expand description

Represents ability to save data to a CSV

Required methods

Writes a table to some instance of the io::Write trait

Provided methods

Write a table to a string

Writes a table to a CSV file at the given path

Implementors