pub struct ExportConfig {
pub format: ExportFormat,
pub show_char_intervals: bool,
pub include_text: bool,
pub highlight_extractions: bool,
pub include_statistics: bool,
pub custom_css: Option<String>,
pub title: Option<String>,
}
Expand description
Configuration for visualization exports
Fields§
§format: ExportFormat
Export format to use
show_char_intervals: bool
Show character intervals in output
include_text: bool
Include original text in export
highlight_extractions: bool
Highlight extractions in text (for HTML/Markdown)
include_statistics: bool
Include extraction statistics
custom_css: Option<String>
Custom CSS for HTML export
title: Option<String>
Title for the export
Trait Implementations§
Source§impl Clone for ExportConfig
impl Clone for ExportConfig
Source§fn clone(&self) -> ExportConfig
fn clone(&self) -> ExportConfig
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 ExportConfig
impl Debug for ExportConfig
Auto Trait Implementations§
impl Freeze for ExportConfig
impl RefUnwindSafe for ExportConfig
impl Send for ExportConfig
impl Sync for ExportConfig
impl Unpin for ExportConfig
impl UnwindSafe for ExportConfig
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