pub struct StateIntegrityReport {
pub schema: String,
pub status: String,
pub structural_errors: Vec<IntegrityIssue>,
pub warnings: Vec<IntegrityIssue>,
pub proof_freshness: String,
pub replay: ReplayReport,
pub summary: BTreeMap<String, usize>,
}Fields§
§schema: String§status: String§structural_errors: Vec<IntegrityIssue>§warnings: Vec<IntegrityIssue>§proof_freshness: String§replay: ReplayReport§summary: BTreeMap<String, usize>Trait Implementations§
Source§impl Clone for StateIntegrityReport
impl Clone for StateIntegrityReport
Source§fn clone(&self) -> StateIntegrityReport
fn clone(&self) -> StateIntegrityReport
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 StateIntegrityReport
impl Debug for StateIntegrityReport
Source§impl<'de> Deserialize<'de> for StateIntegrityReport
impl<'de> Deserialize<'de> for StateIntegrityReport
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 StateIntegrityReport
impl RefUnwindSafe for StateIntegrityReport
impl Send for StateIntegrityReport
impl Sync for StateIntegrityReport
impl Unpin for StateIntegrityReport
impl UnsafeUnpin for StateIntegrityReport
impl UnwindSafe for StateIntegrityReport
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