pub enum ExportFormat {
Text,
Html,
Markdown,
Json,
Csv,
}
Expand description
Export format options for visualization
Variants§
Text
Simple text format (existing functionality)
Html
Rich HTML with highlighting and interactivity
Markdown
Structured markdown with summaries
Json
Raw JSON export for analysis
Csv
CSV export for spreadsheet analysis
Trait Implementations§
Source§impl Clone for ExportFormat
impl Clone for ExportFormat
Source§fn clone(&self) -> ExportFormat
fn clone(&self) -> ExportFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ExportFormat
impl Debug for ExportFormat
Source§impl PartialEq for ExportFormat
impl PartialEq for ExportFormat
impl Copy for ExportFormat
impl StructuralPartialEq for ExportFormat
Auto Trait Implementations§
impl Freeze for ExportFormat
impl RefUnwindSafe for ExportFormat
impl Send for ExportFormat
impl Sync for ExportFormat
impl Unpin for ExportFormat
impl UnwindSafe for ExportFormat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more