pub enum ThresholdVerdict {
Satisfied,
Violated,
Indeterminate,
}Expand description
Three-valued result for comparing bounded evidence with a policy threshold.
Variants§
Satisfied
Every value in the interval meets the maximum.
Violated
Every value in the interval exceeds the maximum.
Indeterminate
Bounds straddle the maximum, so policy evaluation must not guess.
Trait Implementations§
Source§impl Clone for ThresholdVerdict
impl Clone for ThresholdVerdict
Source§fn clone(&self) -> ThresholdVerdict
fn clone(&self) -> ThresholdVerdict
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 ThresholdVerdict
impl Debug for ThresholdVerdict
Source§impl PartialEq for ThresholdVerdict
impl PartialEq for ThresholdVerdict
impl Copy for ThresholdVerdict
impl Eq for ThresholdVerdict
impl StructuralPartialEq for ThresholdVerdict
Auto Trait Implementations§
impl Freeze for ThresholdVerdict
impl RefUnwindSafe for ThresholdVerdict
impl Send for ThresholdVerdict
impl Sync for ThresholdVerdict
impl Unpin for ThresholdVerdict
impl UnwindSafe for ThresholdVerdict
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