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>,
pub aggregate_pipeline_highlights: bool,
pub expand_nested_json: bool,
pub allow_overlapping_highlights: bool,
pub show_pipeline_legend: bool,
}
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
aggregate_pipeline_highlights: bool
Aggregate highlights across pipeline steps (pipeline HTML export)
expand_nested_json: bool
Expand nested JSON extraction_text into atomic extractions when possible
allow_overlapping_highlights: bool
Allow overlapping highlights (layered rendering)
show_pipeline_legend: bool
Show legend for pipeline steps/colors
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