pub enum ChunkApplyResult {
Accept,
Retry,
Abort,
}Expand description
Result of applying a snapshot chunk.
Variants§
Trait Implementations§
Source§impl Clone for ChunkApplyResult
impl Clone for ChunkApplyResult
Source§fn clone(&self) -> ChunkApplyResult
fn clone(&self) -> ChunkApplyResult
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 ChunkApplyResult
impl Debug for ChunkApplyResult
Source§impl<'de> Deserialize<'de> for ChunkApplyResult
impl<'de> Deserialize<'de> for ChunkApplyResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ChunkApplyResult
impl PartialEq for ChunkApplyResult
Source§impl Serialize for ChunkApplyResult
impl Serialize for ChunkApplyResult
impl StructuralPartialEq for ChunkApplyResult
Auto Trait Implementations§
impl Freeze for ChunkApplyResult
impl RefUnwindSafe for ChunkApplyResult
impl Send for ChunkApplyResult
impl Sync for ChunkApplyResult
impl Unpin for ChunkApplyResult
impl UnsafeUnpin for ChunkApplyResult
impl UnwindSafe for ChunkApplyResult
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