Enum cql::Value [] [src]

pub enum Value {
    CqlNull,
    CqlCustom(StringVec<u8>),
    CqlAscii(String),
    CqlBigint(i64),
    CqlBlob(Vec<u8>),
    CqlBoolean(bool),
    CqlCounter(u64),
    CqlDecimal(i32i64),
    CqlDouble(f64),
    CqlFloat(f32),
    CqlInt(i32),
    CqlText(String),
    CqlTimestamp(i64),
    CqlUUID([u8; 16]),
    CqlVarChar(String),
    CqlVarInt(i64),
    CqlTimeUUID([u8; 16]),
    CqlInet(IpAddr),
    CqlList(Vec<Value>),
    CqlMap(Vec<(Value, Value)>),
    CqlSet(Vec<Value>),
    CqlTuple(Vec<Vec<Value>>),
    CqlUnknown,
}

Variants

Trait Implementations

impl Clone for Value
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Value
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Value

impl Sync for Value