pub enum ProcessResult {
Updated,
AckOnly,
Duplicate,
}Available on crate feature
sync only.Expand description
Result of processing an incoming sync message
Variants§
Updated
State was updated with the diff
AckOnly
Message was ack-only, no state change
Duplicate
Duplicate message (already have this version)
Trait Implementations§
Source§impl Clone for ProcessResult
impl Clone for ProcessResult
Source§fn clone(&self) -> ProcessResult
fn clone(&self) -> ProcessResult
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 ProcessResult
impl Debug for ProcessResult
Source§impl PartialEq for ProcessResult
impl PartialEq for ProcessResult
impl Eq for ProcessResult
impl StructuralPartialEq for ProcessResult
Auto Trait Implementations§
impl Freeze for ProcessResult
impl RefUnwindSafe for ProcessResult
impl Send for ProcessResult
impl Sync for ProcessResult
impl Unpin for ProcessResult
impl UnwindSafe for ProcessResult
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