pub trait Export {
// Required methods
fn to_csv(&self) -> Result<String, ExportError>;
fn to_md(&self) -> Result<String, ExportError>;
fn to_json(&self) -> Result<String, ExportError>;
}pub trait Export {
// Required methods
fn to_csv(&self) -> Result<String, ExportError>;
fn to_md(&self) -> Result<String, ExportError>;
fn to_json(&self) -> Result<String, ExportError>;
}