Trait memtable_core::exts::csv::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
Provided methods
fn to_csv_str(&self) -> Result<String>
fn to_csv_str(&self) -> Result<String>Write a table to a string