pub enum ThresholdConfig {
ObjectDetection {
id: u32,
min_score: f32,
},
AnomalyGMM {
id: u32,
min_anomaly_score: f32,
},
}
Variants§
Trait Implementations§
Source§impl Debug for ThresholdConfig
impl Debug for ThresholdConfig
Auto Trait Implementations§
impl Freeze for ThresholdConfig
impl RefUnwindSafe for ThresholdConfig
impl Send for ThresholdConfig
impl Sync for ThresholdConfig
impl Unpin for ThresholdConfig
impl UnwindSafe for ThresholdConfig
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