Enum cdrs::frame::frame_batch::BatchType [] [src]

pub enum BatchType {
    Logged,
    Unlogged,
    Counter,
}

Batch type

Variants

The batch will be "logged". This is equivalent to a normal CQL3 batch statement.

The batch will be "unlogged".

The batch will be a "counter" batch (and non-counter statements will be rejected).

Trait Implementations

impl Debug for BatchType
[src]

Formats the value using the given formatter.

impl Clone for BatchType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BatchType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl FromSingleByte for BatchType
[src]

It should convert a single byte into an implementor struct.

impl AsByte for BatchType
[src]

It should represent a struct as a single byte.