pub struct OpenReport {
pub replayed: usize,
pub skipped: usize,
pub truncated_tail: bool,
}Expand description
Report of an open: what the journal replay found.
Fields§
§replayed: usizeJournal records applied.
skipped: usizeJournal records skipped as already contained in the snapshot.
truncated_tail: boolA torn tail record was dropped (crash between appends).
Trait Implementations§
Source§impl Clone for OpenReport
impl Clone for OpenReport
Source§fn clone(&self) -> OpenReport
fn clone(&self) -> OpenReport
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 OpenReport
impl Debug for OpenReport
Source§impl Default for OpenReport
impl Default for OpenReport
Source§fn default() -> OpenReport
fn default() -> OpenReport
Returns the “default value” for a type. Read more
impl Eq for OpenReport
Source§impl PartialEq for OpenReport
impl PartialEq for OpenReport
impl StructuralPartialEq for OpenReport
Auto Trait Implementations§
impl Freeze for OpenReport
impl RefUnwindSafe for OpenReport
impl Send for OpenReport
impl Sync for OpenReport
impl Unpin for OpenReport
impl UnsafeUnpin for OpenReport
impl UnwindSafe for OpenReport
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