pub enum SelfCheckStatus {
Success,
Failure,
}Expand description
Status of a self-check execution.
Variants§
Trait Implementations§
Source§impl Clone for SelfCheckStatus
impl Clone for SelfCheckStatus
Source§fn clone(&self) -> SelfCheckStatus
fn clone(&self) -> SelfCheckStatus
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 SelfCheckStatus
Source§impl Debug for SelfCheckStatus
impl Debug for SelfCheckStatus
Source§impl<'de> Deserialize<'de> for SelfCheckStatus
impl<'de> Deserialize<'de> for SelfCheckStatus
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
impl Eq for SelfCheckStatus
Source§impl PartialEq for SelfCheckStatus
impl PartialEq for SelfCheckStatus
Source§fn eq(&self, other: &SelfCheckStatus) -> bool
fn eq(&self, other: &SelfCheckStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SelfCheckStatus
impl Serialize for SelfCheckStatus
impl StructuralPartialEq for SelfCheckStatus
Auto Trait Implementations§
impl Freeze for SelfCheckStatus
impl RefUnwindSafe for SelfCheckStatus
impl Send for SelfCheckStatus
impl Sync for SelfCheckStatus
impl Unpin for SelfCheckStatus
impl UnsafeUnpin for SelfCheckStatus
impl UnwindSafe for SelfCheckStatus
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