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

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

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

Variants

The write was a non-batched non-counter write

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

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

The write was a counter write (batched or not)

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

Trait Implementations

impl Debug for WriteType
[src]

Formats the value using the given formatter.

impl FromCursor for WriteType
[src]

It should return an implementor from an io::Cursor over an array of bytes.