pub struct AlertThresholds {
pub stale_warning_days: f64,
pub stale_critical_days: f64,
pub in_progress_stale_multiplier: f64,
pub blocking_cascade_info: usize,
pub blocking_cascade_warning: usize,
}Expand description
Tunable thresholds for alert generation.
Fields§
§stale_warning_days: f64§stale_critical_days: f64§in_progress_stale_multiplier: f64§blocking_cascade_info: usize§blocking_cascade_warning: usizeTrait Implementations§
Source§impl Clone for AlertThresholds
impl Clone for AlertThresholds
Source§fn clone(&self) -> AlertThresholds
fn clone(&self) -> AlertThresholds
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 AlertThresholds
impl Debug for AlertThresholds
Auto Trait Implementations§
impl Freeze for AlertThresholds
impl RefUnwindSafe for AlertThresholds
impl Send for AlertThresholds
impl Sync for AlertThresholds
impl Unpin for AlertThresholds
impl UnsafeUnpin for AlertThresholds
impl UnwindSafe for AlertThresholds
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