pub enum EvaluationResult {
Pass,
Fail,
}
Expand description
The result of the rule evaluations for rules with the active
and evaluate
enforcement statuses, demonstrating whether rules would pass or fail if all rules in the rule suite were active
.
Variants§
Trait Implementations§
Source§impl Clone for EvaluationResult
impl Clone for EvaluationResult
Source§fn clone(&self) -> EvaluationResult
fn clone(&self) -> EvaluationResult
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 EvaluationResult
impl Debug for EvaluationResult
Source§impl Default for EvaluationResult
impl Default for EvaluationResult
Source§fn default() -> EvaluationResult
fn default() -> EvaluationResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EvaluationResult
impl<'de> Deserialize<'de> for EvaluationResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for EvaluationResult
impl Hash for EvaluationResult
Source§impl Ord for EvaluationResult
impl Ord for EvaluationResult
Source§fn cmp(&self, other: &EvaluationResult) -> Ordering
fn cmp(&self, other: &EvaluationResult) -> 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 EvaluationResult
impl PartialEq for EvaluationResult
Source§impl PartialOrd for EvaluationResult
impl PartialOrd for EvaluationResult
Source§impl Serialize for EvaluationResult
impl Serialize for EvaluationResult
impl Copy for EvaluationResult
impl Eq for EvaluationResult
impl StructuralPartialEq for EvaluationResult
Auto Trait Implementations§
impl Freeze for EvaluationResult
impl RefUnwindSafe for EvaluationResult
impl Send for EvaluationResult
impl Sync for EvaluationResult
impl Unpin for EvaluationResult
impl UnwindSafe for EvaluationResult
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.