pub struct RoundtripReport {
pub records: Vec<RoundtripRecord>,
}Expand description
The full result of a roundtrip proof over a record set.
Fields§
§records: Vec<RoundtripRecord>Per-record outcomes, in order.
Implementations§
Source§impl RoundtripReport
impl RoundtripReport
Sourcepub fn all_identical(&self) -> bool
pub fn all_identical(&self) -> bool
True iff EVERY record reproduced identically through the Compact extract.
Trait Implementations§
Source§impl Clone for RoundtripReport
impl Clone for RoundtripReport
Source§fn clone(&self) -> RoundtripReport
fn clone(&self) -> RoundtripReport
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 RoundtripReport
impl Debug for RoundtripReport
impl Eq for RoundtripReport
Source§impl PartialEq for RoundtripReport
impl PartialEq for RoundtripReport
Source§fn eq(&self, other: &RoundtripReport) -> bool
fn eq(&self, other: &RoundtripReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RoundtripReport
Auto Trait Implementations§
impl Freeze for RoundtripReport
impl RefUnwindSafe for RoundtripReport
impl Send for RoundtripReport
impl Sync for RoundtripReport
impl Unpin for RoundtripReport
impl UnsafeUnpin for RoundtripReport
impl UnwindSafe for RoundtripReport
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