pub enum FaultQueue {
_1,
_2,
_4,
_6,
}
Expand description
Fault queue
Number of consecutive faults necessary to trigger an alert.
Variants§
_1
1 fault will trigger an alert (default)
_2
2 consecutive faults will trigger an alert
_4
4 consecutive faults will trigger an alert
_6
6 consecutive faults will trigger an alert
Trait Implementations§
Source§impl Clone for FaultQueue
impl Clone for FaultQueue
Source§fn clone(&self) -> FaultQueue
fn clone(&self) -> FaultQueue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FaultQueue
impl Debug for FaultQueue
Source§impl Default for FaultQueue
impl Default for FaultQueue
Source§fn default() -> FaultQueue
fn default() -> FaultQueue
Returns the “default value” for a type. Read more
Source§impl Hash for FaultQueue
impl Hash for FaultQueue
Source§impl PartialEq for FaultQueue
impl PartialEq for FaultQueue
impl Copy for FaultQueue
impl Eq for FaultQueue
impl StructuralPartialEq for FaultQueue
Auto Trait Implementations§
impl Freeze for FaultQueue
impl RefUnwindSafe for FaultQueue
impl Send for FaultQueue
impl Sync for FaultQueue
impl Unpin for FaultQueue
impl UnwindSafe for FaultQueue
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