pub struct BlameReport {
pub session_id: String,
pub bad_signers: Vec<SignerId>,
pub all_individual_valid: bool,
pub error: String,
}Expand description
Result of blame attribution.
Fields§
§session_id: StringSession that failed.
bad_signers: Vec<SignerId>Identified bad signer(s), if any.
all_individual_valid: boolTrue if all shares verified individually but aggregation still failed (indicates a protocol-level issue).
error: StringError message from the original aggregation attempt.
Trait Implementations§
Source§impl Clone for BlameReport
impl Clone for BlameReport
Source§fn clone(&self) -> BlameReport
fn clone(&self) -> BlameReport
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 BlameReport
impl Debug for BlameReport
Source§impl<'de> Deserialize<'de> for BlameReport
impl<'de> Deserialize<'de> for BlameReport
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
Auto Trait Implementations§
impl Freeze for BlameReport
impl RefUnwindSafe for BlameReport
impl Send for BlameReport
impl Sync for BlameReport
impl Unpin for BlameReport
impl UnsafeUnpin for BlameReport
impl UnwindSafe for BlameReport
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