pub struct ChartAnalysisConfig {
pub chart_types: Vec<ChartType>,
pub extract_data: bool,
pub generate_descriptions: bool,
pub analyze_trends: bool,
}Expand description
Chart analysis configuration
Fields§
§chart_types: Vec<ChartType>Chart types to recognize
extract_data: boolExtract data points
generate_descriptions: boolGenerate descriptions
analyze_trends: boolAnalyze trends
Trait Implementations§
Source§impl Clone for ChartAnalysisConfig
impl Clone for ChartAnalysisConfig
Source§fn clone(&self) -> ChartAnalysisConfig
fn clone(&self) -> ChartAnalysisConfig
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 ChartAnalysisConfig
impl Debug for ChartAnalysisConfig
Auto Trait Implementations§
impl Freeze for ChartAnalysisConfig
impl RefUnwindSafe for ChartAnalysisConfig
impl Send for ChartAnalysisConfig
impl Sync for ChartAnalysisConfig
impl Unpin for ChartAnalysisConfig
impl UnwindSafe for ChartAnalysisConfig
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