pub struct ReportEntry {
pub scheme_name: String,
pub scheme_version: String,
pub parties: u32,
pub threshold: u32,
pub outcome: String,
pub output_hex: String,
pub messages_exchanged: u64,
pub bytes_exchanged: u64,
pub rounds: u8,
pub elapsed_nanos: u128,
pub note: Option<String>,
}Expand description
One row in the output report.
Fields§
§scheme_name: String§scheme_version: String§parties: u32§threshold: u32§outcome: String§output_hex: String§messages_exchanged: u64§bytes_exchanged: u64§rounds: u8§elapsed_nanos: u128§note: Option<String>Trait Implementations§
Source§impl Clone for ReportEntry
impl Clone for ReportEntry
Source§fn clone(&self) -> ReportEntry
fn clone(&self) -> ReportEntry
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 ReportEntry
impl Debug for ReportEntry
Source§impl<'de> Deserialize<'de> for ReportEntry
impl<'de> Deserialize<'de> for ReportEntry
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 ReportEntry
Source§impl From<&TestResult> for ReportEntry
impl From<&TestResult> for ReportEntry
Source§fn from(r: &TestResult) -> Self
fn from(r: &TestResult) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReportEntry
impl PartialEq for ReportEntry
Source§fn eq(&self, other: &ReportEntry) -> bool
fn eq(&self, other: &ReportEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReportEntry
impl Serialize for ReportEntry
impl StructuralPartialEq for ReportEntry
Auto Trait Implementations§
impl Freeze for ReportEntry
impl RefUnwindSafe for ReportEntry
impl Send for ReportEntry
impl Sync for ReportEntry
impl Unpin for ReportEntry
impl UnsafeUnpin for ReportEntry
impl UnwindSafe for ReportEntry
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