pub struct AbortAttribution {
pub faulty_member: String,
pub reason: AbortReason,
}Expand description
Identifiable abort: which member caused a ceremony failure and why.
Fields§
§faulty_member: StringThe member at fault.
reason: AbortReasonMachine-readable reason.
Trait Implementations§
Source§impl Clone for AbortAttribution
impl Clone for AbortAttribution
Source§fn clone(&self) -> AbortAttribution
fn clone(&self) -> AbortAttribution
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 AbortAttribution
impl Debug for AbortAttribution
Source§impl<'de> Deserialize<'de> for AbortAttribution
impl<'de> Deserialize<'de> for AbortAttribution
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 AbortAttribution
Source§impl PartialEq for AbortAttribution
impl PartialEq for AbortAttribution
Source§fn eq(&self, other: &AbortAttribution) -> bool
fn eq(&self, other: &AbortAttribution) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AbortAttribution
impl Serialize for AbortAttribution
impl StructuralPartialEq for AbortAttribution
Auto Trait Implementations§
impl Freeze for AbortAttribution
impl RefUnwindSafe for AbortAttribution
impl Send for AbortAttribution
impl Sync for AbortAttribution
impl Unpin for AbortAttribution
impl UnsafeUnpin for AbortAttribution
impl UnwindSafe for AbortAttribution
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