pub enum CheckLiveStatusResult {
Computed(ComputedResult),
NotComputable(NotComputable),
FailedToResolve(FailedToResolve),
Unknown(Unknown),
}
Variants§
Computed(ComputedResult)
NotComputable(NotComputable)
The check cannot be computed in a streaming context. This would be returned if an overly expensive computation was attempted, such as checking the rolling median over the last year of data.
FailedToResolve(FailedToResolve)
The checklist cannot be applied to the data sources.
Unknown(Unknown)
An unknown variant.
Trait Implementations§
Source§impl Clone for CheckLiveStatusResult
impl Clone for CheckLiveStatusResult
Source§fn clone(&self) -> CheckLiveStatusResult
fn clone(&self) -> CheckLiveStatusResult
Returns a copy 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 CheckLiveStatusResult
impl Debug for CheckLiveStatusResult
Source§impl<'de> Deserialize<'de> for CheckLiveStatusResult
impl<'de> Deserialize<'de> for CheckLiveStatusResult
Source§fn deserialize<D>(d: D) -> Result<CheckLiveStatusResult, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<CheckLiveStatusResult, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for CheckLiveStatusResult
impl Hash for CheckLiveStatusResult
Source§impl Ord for CheckLiveStatusResult
impl Ord for CheckLiveStatusResult
Source§fn cmp(&self, other: &CheckLiveStatusResult) -> Ordering
fn cmp(&self, other: &CheckLiveStatusResult) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CheckLiveStatusResult
impl PartialEq for CheckLiveStatusResult
Source§impl PartialOrd for CheckLiveStatusResult
impl PartialOrd for CheckLiveStatusResult
Source§impl Serialize for CheckLiveStatusResult
impl Serialize for CheckLiveStatusResult
impl Eq for CheckLiveStatusResult
impl StructuralPartialEq for CheckLiveStatusResult
Auto Trait Implementations§
impl Freeze for CheckLiveStatusResult
impl RefUnwindSafe for CheckLiveStatusResult
impl Send for CheckLiveStatusResult
impl Sync for CheckLiveStatusResult
impl Unpin for CheckLiveStatusResult
impl UnwindSafe for CheckLiveStatusResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.