pub struct ParityReport {
pub format_version: u32,
pub passed: bool,
pub observations: Vec<ObservationParity>,
pub failures: Vec<String>,
}Expand description
Complete backend/reference parity report.
Fields§
§format_version: u32Report schema version.
passed: boolWhether every required observation passed.
observations: Vec<ObservationParity>Path-level results in stable order.
failures: Vec<String>Missing, unexpected, or invalid observations.
Trait Implementations§
Source§impl Clone for ParityReport
impl Clone for ParityReport
Source§fn clone(&self) -> ParityReport
fn clone(&self) -> ParityReport
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 ParityReport
impl Debug for ParityReport
Source§impl<'de> Deserialize<'de> for ParityReport
impl<'de> Deserialize<'de> for ParityReport
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
Source§impl PartialEq for ParityReport
impl PartialEq for ParityReport
Source§impl Serialize for ParityReport
impl Serialize for ParityReport
impl StructuralPartialEq for ParityReport
Auto Trait Implementations§
impl Freeze for ParityReport
impl RefUnwindSafe for ParityReport
impl Send for ParityReport
impl Sync for ParityReport
impl Unpin for ParityReport
impl UnsafeUnpin for ParityReport
impl UnwindSafe for ParityReport
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