pub enum ChangePage {
Batch(ChangeBatch),
ResetRequired {
reason: ChangeResetReason,
},
}Expand description
Result of requesting the next anchored change page.
Variants§
Batch(ChangeBatch)
A replayable batch and its following checkpoint.
ResetRequired
Incremental continuation stopped and requires reconciliation or reimport.
Fields
§
reason: ChangeResetReasonProduct-neutral reset classification.
Trait Implementations§
Source§impl Clone for ChangePage
impl Clone for ChangePage
Source§fn clone(&self) -> ChangePage
fn clone(&self) -> ChangePage
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 ChangePage
impl Debug for ChangePage
Source§impl PartialEq for ChangePage
impl PartialEq for ChangePage
impl Eq for ChangePage
impl StructuralPartialEq for ChangePage
Auto Trait Implementations§
impl Freeze for ChangePage
impl RefUnwindSafe for ChangePage
impl Send for ChangePage
impl Sync for ChangePage
impl Unpin for ChangePage
impl UnwindSafe for ChangePage
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