pub struct ActiveWalOrderingIssue {
pub index: usize,
pub previous_seq: u64,
pub seq: u64,
}Expand description
One active-WAL record whose sequence did not strictly increase over the previous record.
Fields§
§index: usizeZero-based position of the offending record within the replayed WAL.
previous_seq: u64Sequence of the previous record.
seq: u64Sequence of the offending record (not greater than previous_seq).
Trait Implementations§
Source§impl Clone for ActiveWalOrderingIssue
impl Clone for ActiveWalOrderingIssue
Source§fn clone(&self) -> ActiveWalOrderingIssue
fn clone(&self) -> ActiveWalOrderingIssue
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 ActiveWalOrderingIssue
impl Debug for ActiveWalOrderingIssue
impl Eq for ActiveWalOrderingIssue
Source§impl PartialEq for ActiveWalOrderingIssue
impl PartialEq for ActiveWalOrderingIssue
impl StructuralPartialEq for ActiveWalOrderingIssue
Auto Trait Implementations§
impl Freeze for ActiveWalOrderingIssue
impl RefUnwindSafe for ActiveWalOrderingIssue
impl Send for ActiveWalOrderingIssue
impl Sync for ActiveWalOrderingIssue
impl Unpin for ActiveWalOrderingIssue
impl UnsafeUnpin for ActiveWalOrderingIssue
impl UnwindSafe for ActiveWalOrderingIssue
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