Enum cdrs::frame::frame_result::ResultKind [] [src]

pub enum ResultKind {
    Void,
    Rows,
    SetKeyspace,
    Prepared,
    SchemaChange,
}

ResultKind is enum which represents types of result.

Variants

Void result.

Rows result.

Set keyspace result.

Prepeared result.

Schema change result.

Trait Implementations

impl Debug for ResultKind
[src]

[src]

Formats the value using the given formatter.

impl IntoBytes for ResultKind
[src]

[src]

It should convert a struct into an array of bytes.

impl FromBytes for ResultKind
[src]

[src]

It gets and array of bytes and should return an implementor struct.

impl FromCursor for ResultKind
[src]

[src]

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