pub enum GateStatus {
Pass,
Fail,
InsufficientCorpus,
}Expand description
Whether the gate passed, failed, or could not be evaluated.
Variants§
Trait Implementations§
Source§impl Clone for GateStatus
impl Clone for GateStatus
Source§fn clone(&self) -> GateStatus
fn clone(&self) -> GateStatus
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 moreimpl Copy for GateStatus
Source§impl Debug for GateStatus
impl Debug for GateStatus
impl Eq for GateStatus
Source§impl PartialEq for GateStatus
impl PartialEq for GateStatus
Source§fn eq(&self, other: &GateStatus) -> bool
fn eq(&self, other: &GateStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GateStatus
Auto Trait Implementations§
impl Freeze for GateStatus
impl RefUnwindSafe for GateStatus
impl Send for GateStatus
impl Sync for GateStatus
impl Unpin for GateStatus
impl UnsafeUnpin for GateStatus
impl UnwindSafe for GateStatus
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