pub struct DiagnosticsConfig {
pub auto_analysis_enabled: bool,
pub max_analysis_time: Duration,
pub confidence_threshold: f64,
pub history_retention: Duration,
pub pattern_detection: PatternDetectionConfig,
}Expand description
Diagnostics configuration
Fields§
§auto_analysis_enabled: boolEnable automatic failure analysis
max_analysis_time: DurationMaximum analysis time
confidence_threshold: f64Confidence threshold for recommendations
history_retention: DurationHistorical data retention
pattern_detection: PatternDetectionConfigPattern detection settings
Trait Implementations§
Source§impl Clone for DiagnosticsConfig
impl Clone for DiagnosticsConfig
Source§fn clone(&self) -> DiagnosticsConfig
fn clone(&self) -> DiagnosticsConfig
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 DiagnosticsConfig
impl Debug for DiagnosticsConfig
Source§impl Default for DiagnosticsConfig
impl Default for DiagnosticsConfig
Source§impl<'de> Deserialize<'de> for DiagnosticsConfig
impl<'de> Deserialize<'de> for DiagnosticsConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DiagnosticsConfig
impl RefUnwindSafe for DiagnosticsConfig
impl Send for DiagnosticsConfig
impl Sync for DiagnosticsConfig
impl Unpin for DiagnosticsConfig
impl UnwindSafe for DiagnosticsConfig
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