pub enum WriteType {
Simple,
Batch,
UnloggedBatch,
Counter,
BatchLog,
Cas,
View,
Cdc,
Other(String),
}
Expand description
Type of write operation requested
Variants§
Simple
Non-batched non-counter write
Batch
Logged batch write. If this type is received, it means the batch log has been successfully written (otherwise BatchLog type would be present)
UnloggedBatch
Unlogged batch. No batch log write has been attempted.
Counter
Counter write (batched or not)
BatchLog
Timeout occurred during the write to the batch log when a logged batch was requested
Cas
Timeout occurred during Compare And Set write/update
View
Write involves VIEW update and failure to acquire local view(MV) lock for key within timeout
Cdc
Timeout occurred when a cdc_total_space_in_mb is exceeded when doing a write to data tracked by cdc
Other(String)
Other type not specified in the specification
Implementations§
Trait Implementations§
source§impl PartialEq for WriteType
impl PartialEq for WriteType
impl Eq for WriteType
impl StructuralPartialEq for WriteType
Auto Trait Implementations§
impl Freeze for WriteType
impl RefUnwindSafe for WriteType
impl Send for WriteType
impl Sync for WriteType
impl Unpin for WriteType
impl UnwindSafe for WriteType
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more