pub struct AnalyticConfig {
pub scales: Vec<i64>,
pub cp_threshold: f32,
pub cp_smoothing: usize,
}Expand description
Configuration for the analytic backend.
Fields§
§scales: Vec<i64>Temporal scales (bucket widths in microseconds) for multi-scale drift.
cp_threshold: f32Threshold for soft change point detection (z-score).
cp_smoothing: usizeSmoothing window for soft change point count.
Trait Implementations§
Source§impl Clone for AnalyticConfig
impl Clone for AnalyticConfig
Source§fn clone(&self) -> AnalyticConfig
fn clone(&self) -> AnalyticConfig
Returns a copy 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 AnalyticConfig
impl Debug for AnalyticConfig
Auto Trait Implementations§
impl Freeze for AnalyticConfig
impl RefUnwindSafe for AnalyticConfig
impl Send for AnalyticConfig
impl Sync for AnalyticConfig
impl Unpin for AnalyticConfig
impl UnwindSafe for AnalyticConfig
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