Struct cdrs::frame::frame_result::ColTypeOption[][src]

pub struct ColTypeOption {
    pub id: ColType,
    pub value: Option<ColTypeOptionValue>,
}

Cassandra option that represent column type.

Fields

Id refers to ColType.

Values depending on column type. [Read more...] (https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v4.spec#L569)

Trait Implementations

impl Debug for ColTypeOption
[src]

Formats the value using the given formatter. Read more

impl Clone for ColTypeOption
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl FromCursor for ColTypeOption
[src]

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

Auto Trait Implementations