pub enum AssertionState {
Pending,
Passed,
Failed,
Blocked,
}Expand description
Result state for an assertion check.
Variants§
Trait Implementations§
Source§impl Clone for AssertionState
impl Clone for AssertionState
Source§fn clone(&self) -> AssertionState
fn clone(&self) -> AssertionState
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 AssertionState
impl Debug for AssertionState
Source§impl Default for AssertionState
impl Default for AssertionState
Source§fn default() -> AssertionState
fn default() -> AssertionState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssertionState
impl<'de> Deserialize<'de> for AssertionState
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 PartialEq for AssertionState
impl PartialEq for AssertionState
Source§fn eq(&self, other: &AssertionState) -> bool
fn eq(&self, other: &AssertionState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AssertionState
impl Serialize for AssertionState
impl Copy for AssertionState
impl Eq for AssertionState
impl StructuralPartialEq for AssertionState
Auto Trait Implementations§
impl Freeze for AssertionState
impl RefUnwindSafe for AssertionState
impl Send for AssertionState
impl Sync for AssertionState
impl Unpin for AssertionState
impl UnsafeUnpin for AssertionState
impl UnwindSafe for AssertionState
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