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

pub enum ColType {
    Custom,
    Ascii,
    Bigint,
    Blob,
    Boolean,
    Counter,
    Decimal,
    Double,
    Float,
    Int,
    Timestamp,
    Uuid,
    Varchar,
    Varint,
    Timeuuid,
    Inet,
    Date,
    Time,
    Smallint,
    Tinyint,
    List,
    Map,
    Set,
    Udt,
    Tuple,
    Null,
}

Cassandra data types which clould be returned by a server.

Variants

Trait Implementations

impl Debug for ColType
[src]

Formats the value using the given formatter.

impl Clone for ColType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl FromBytes for ColType
[src]

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

impl FromCursor for ColType
[src]

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