pub struct RollbackForkReport {
pub failures: Vec<RollbackForkFailure>,
}Expand description
Result of checking ADR 0033 rollback/fork refusal invariants.
Fields§
§failures: Vec<RollbackForkFailure>Refusal invariant failures.
Implementations§
Trait Implementations§
Source§impl Clone for RollbackForkReport
impl Clone for RollbackForkReport
Source§fn clone(&self) -> RollbackForkReport
fn clone(&self) -> RollbackForkReport
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 RollbackForkReport
impl Debug for RollbackForkReport
Source§impl PartialEq for RollbackForkReport
impl PartialEq for RollbackForkReport
Source§fn eq(&self, other: &RollbackForkReport) -> bool
fn eq(&self, other: &RollbackForkReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RollbackForkReport
impl StructuralPartialEq for RollbackForkReport
Auto Trait Implementations§
impl Freeze for RollbackForkReport
impl RefUnwindSafe for RollbackForkReport
impl Send for RollbackForkReport
impl Sync for RollbackForkReport
impl Unpin for RollbackForkReport
impl UnsafeUnpin for RollbackForkReport
impl UnwindSafe for RollbackForkReport
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