pub struct AnomalyPatternConfig {
pub temporal_pattern: TemporalPattern,
pub clustering: ClusteringConfig,
pub entity_targeting: EntityTargetingPattern,
pub batch_injection: bool,
pub batch_size_range: (usize, usize),
}Expand description
Combined pattern configuration.
Fields§
§temporal_pattern: TemporalPatternTemporal pattern.
clustering: ClusteringConfigClustering configuration.
entity_targeting: EntityTargetingPatternEntity targeting pattern.
batch_injection: boolWhether to inject anomalies in batches.
batch_size_range: (usize, usize)Batch size range.
Trait Implementations§
Source§impl Clone for AnomalyPatternConfig
impl Clone for AnomalyPatternConfig
Source§fn clone(&self) -> AnomalyPatternConfig
fn clone(&self) -> AnomalyPatternConfig
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 AnomalyPatternConfig
impl Debug for AnomalyPatternConfig
Auto Trait Implementations§
impl Freeze for AnomalyPatternConfig
impl RefUnwindSafe for AnomalyPatternConfig
impl Send for AnomalyPatternConfig
impl Sync for AnomalyPatternConfig
impl Unpin for AnomalyPatternConfig
impl UnwindSafe for AnomalyPatternConfig
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