pub enum ProbeStatus {
Pass,
Fail {
reason: String,
},
Skip {
reason: String,
},
}Expand description
Outcome of a single probe.
Variants§
Pass
The probe succeeded.
Fail
The probe ran and the target is unhealthy / unreachable / misconfigured.
Skip
The probe was not applicable (no check implemented, optional target absent).
Trait Implementations§
Source§impl Clone for ProbeStatus
impl Clone for ProbeStatus
Source§fn clone(&self) -> ProbeStatus
fn clone(&self) -> ProbeStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProbeStatus
impl Debug for ProbeStatus
Auto Trait Implementations§
impl Freeze for ProbeStatus
impl RefUnwindSafe for ProbeStatus
impl Send for ProbeStatus
impl Sync for ProbeStatus
impl Unpin for ProbeStatus
impl UnsafeUnpin for ProbeStatus
impl UnwindSafe for ProbeStatus
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