pub struct ReplayReport {
pub records_replayed: u32,
pub total_effects_applied: u32,
pub total_effects_denied: u32,
pub final_chain_tip: [u8; 32],
}Expand description
Aggregated outcome of replay_into.
Fields§
§records_replayed: u32Number of WAL records consumed.
total_effects_applied: u32Sum of effects_applied across all replayed steps.
total_effects_denied: u32Sum of effects_denied across all replayed steps.
final_chain_tip: [u8; 32]Chain tip after the final replayed record (matches the pre-replay export when the replay is bit-identical).
Trait Implementations§
Source§impl Clone for ReplayReport
impl Clone for ReplayReport
Source§fn clone(&self) -> ReplayReport
fn clone(&self) -> ReplayReport
Returns a duplicate of the value. Read more
1.0.0 · 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 ReplayReport
impl Debug for ReplayReport
Source§impl Default for ReplayReport
impl Default for ReplayReport
Source§fn default() -> ReplayReport
fn default() -> ReplayReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReplayReport
impl PartialEq for ReplayReport
impl Eq for ReplayReport
impl StructuralPartialEq for ReplayReport
Auto Trait Implementations§
impl Freeze for ReplayReport
impl RefUnwindSafe for ReplayReport
impl Send for ReplayReport
impl Sync for ReplayReport
impl Unpin for ReplayReport
impl UnsafeUnpin for ReplayReport
impl UnwindSafe for ReplayReport
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