[][src]Enum cdrs::frame::frame_error::WriteType

pub enum WriteType {
    Simple,
    Batch,
    UnloggedBatch,
    Counter,
    BatchLog,
}

Describes the type of the write that failed. Read more...

Variants

Simple

The write was a non-batched non-counter write

Batch

The write was a (logged) batch write. If this type is received, it means the batch log has been successfully written

UnloggedBatch

The write was an unlogged batch. No batch log write has been attempted.

Counter

The write was a counter write (batched or not)

BatchLog

The failure occured during the write to the batch log when a (logged) batch write was requested.

Trait Implementations

impl Debug for WriteType[src]

impl FromCursor for WriteType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.