pub struct VerifyReport {
pub total_findings: usize,
pub signed: usize,
pub unsigned: usize,
pub valid: usize,
pub invalid: usize,
pub signers: Vec<String>,
pub findings_with_threshold: usize,
pub jointly_accepted: usize,
}Expand description
Result of verifying all signatures in a frontier.
Fields§
§total_findings: usize§signed: usize§unsigned: usize§valid: usize§invalid: usize§signers: Vec<String>§findings_with_threshold: usizev0.37: number of findings carrying flags.signature_threshold = Some(k).
jointly_accepted: usizev0.37: number of findings whose threshold is currently met (k distinct unique-key valid signatures present).
Trait Implementations§
Source§impl Clone for VerifyReport
impl Clone for VerifyReport
Source§fn clone(&self) -> VerifyReport
fn clone(&self) -> VerifyReport
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 VerifyReport
impl Debug for VerifyReport
Source§impl<'de> Deserialize<'de> for VerifyReport
impl<'de> Deserialize<'de> for VerifyReport
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 VerifyReport
impl RefUnwindSafe for VerifyReport
impl Send for VerifyReport
impl Sync for VerifyReport
impl Unpin for VerifyReport
impl UnsafeUnpin for VerifyReport
impl UnwindSafe for VerifyReport
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