pub struct SelfCheckFailure {
pub stage: SelfCheckStage,
pub message: String,
}Expand description
Describes a single failure during self-check.
Fields§
§stage: SelfCheckStageStage at which the failure occurred.
message: StringHuman-readable error message.
Trait Implementations§
Source§impl Clone for SelfCheckFailure
impl Clone for SelfCheckFailure
Source§fn clone(&self) -> SelfCheckFailure
fn clone(&self) -> SelfCheckFailure
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 SelfCheckFailure
impl Debug for SelfCheckFailure
Source§impl<'de> Deserialize<'de> for SelfCheckFailure
impl<'de> Deserialize<'de> for SelfCheckFailure
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 SelfCheckFailure
Source§impl PartialEq for SelfCheckFailure
impl PartialEq for SelfCheckFailure
Source§fn eq(&self, other: &SelfCheckFailure) -> bool
fn eq(&self, other: &SelfCheckFailure) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SelfCheckFailure
impl Serialize for SelfCheckFailure
impl StructuralPartialEq for SelfCheckFailure
Auto Trait Implementations§
impl Freeze for SelfCheckFailure
impl RefUnwindSafe for SelfCheckFailure
impl Send for SelfCheckFailure
impl Sync for SelfCheckFailure
impl Unpin for SelfCheckFailure
impl UnsafeUnpin for SelfCheckFailure
impl UnwindSafe for SelfCheckFailure
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