pub enum ContentUploadRecordTransition {
Applied,
AlreadyApplied,
Fenced,
}Expand description
Result of an idempotent upload-record transition.
Variants§
Applied
Durable state changed.
AlreadyApplied
Equivalent or later durable state already contains the transition.
Fenced
A newer durable offset or local generation superseded the transition.
Trait Implementations§
Source§impl Clone for ContentUploadRecordTransition
impl Clone for ContentUploadRecordTransition
Source§fn clone(&self) -> ContentUploadRecordTransition
fn clone(&self) -> ContentUploadRecordTransition
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 Hash for ContentUploadRecordTransition
impl Hash for ContentUploadRecordTransition
Source§impl PartialEq for ContentUploadRecordTransition
impl PartialEq for ContentUploadRecordTransition
Source§fn eq(&self, other: &ContentUploadRecordTransition) -> bool
fn eq(&self, other: &ContentUploadRecordTransition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ContentUploadRecordTransition
impl Eq for ContentUploadRecordTransition
impl StructuralPartialEq for ContentUploadRecordTransition
Auto Trait Implementations§
impl Freeze for ContentUploadRecordTransition
impl RefUnwindSafe for ContentUploadRecordTransition
impl Send for ContentUploadRecordTransition
impl Sync for ContentUploadRecordTransition
impl Unpin for ContentUploadRecordTransition
impl UnwindSafe for ContentUploadRecordTransition
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