pub enum SnapStatus {
Accepted,
Complete,
Duplicate,
}Expand description
The outcome of applying a SnapshotChunk.
Variants§
Accepted
Chunk applied; more chunks expected.
Complete
The final (last) chunk applied — the snapshot is complete; the tree may render
and incremental Batches (seq ≥ 1) may follow.
Duplicate
An already-applied (or post-completion) chunk — discarded idempotently.
Trait Implementations§
Source§impl Clone for SnapStatus
impl Clone for SnapStatus
Source§fn clone(&self) -> SnapStatus
fn clone(&self) -> SnapStatus
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 SnapStatus
impl Debug for SnapStatus
Source§impl PartialEq for SnapStatus
impl PartialEq for SnapStatus
impl Copy for SnapStatus
impl Eq for SnapStatus
impl StructuralPartialEq for SnapStatus
Auto Trait Implementations§
impl Freeze for SnapStatus
impl RefUnwindSafe for SnapStatus
impl Send for SnapStatus
impl Sync for SnapStatus
impl Unpin for SnapStatus
impl UnsafeUnpin for SnapStatus
impl UnwindSafe for SnapStatus
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