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

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

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

Trait Implementations

impl Clone for ColType[src]

impl Debug for ColType[src]

impl FromBytes for ColType[src]

impl FromCursor for ColType[src]

Auto Trait Implementations

impl RefUnwindSafe for ColType

impl Send for ColType

impl Sync for ColType

impl Unpin for ColType

impl UnwindSafe for ColType

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.