Enum mysql::Value[][src]

pub enum Value {
    NULL,
    Bytes(Vec<u8>),
    Int(i64),
    UInt(u64),
    Float(f64),
    Date(u16u8u8u8u8u8u32),
    Time(boolu32u8u8u8u32),
}

Client side representation of a value of MySql column.

The Value is also used as a parameter to a prepared statement.

Variants

year, month, day, hour, minutes, seconds, micro seconds

is negative, days, hours, minutes, seconds, micro seconds

Methods

impl Value
[src]

Trait Implementations

impl PartialOrd<Value> for Value
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Clone for Value
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Value
[src]

Formats the value using the given formatter. Read more

impl FromValue for Value
[src]

Will panic if could not convert v to Self.

Will return Err(Error::FromValueError(v)) if could not convert v to Self.

Will return Err(Error::FromValueError(v)) if v is not convertible to Self.

impl From<[u8; 8]> for Value
[src]

Performs the conversion.

impl From<[u8; 9]> for Value
[src]

Performs the conversion.

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

Performs the conversion.

impl From<[u8; 21]> for Value
[src]

Performs the conversion.

impl From<NaiveDate> for Value
[src]

Performs the conversion.

impl From<[u8; 15]> for Value
[src]

Performs the conversion.

impl From<NaiveTime> for Value
[src]

Performs the conversion.

impl From<i16> for Value
[src]

Performs the conversion.

impl From<[u8; 10]> for Value
[src]

Performs the conversion.

impl From<Value> for Value
[src]

Performs the conversion.

impl From<f64> for Value
[src]

Performs the conversion.

impl From<[u8; 2]> for Value
[src]

Performs the conversion.

impl From<[u8; 20]> for Value
[src]

Performs the conversion.

impl From<String> for Value
[src]

Performs the conversion.

impl From<bool> for Value
[src]

Performs the conversion.

impl<'a, T> From<&'a T> for Value where
    T: ToValue
[src]

Performs the conversion.

impl From<[u8; 28]> for Value
[src]

Performs the conversion.

impl From<[u8; 29]> for Value
[src]

Performs the conversion.

impl From<[u8; 7]> for Value
[src]

Performs the conversion.

impl From<[u8; 31]> for Value
[src]

Performs the conversion.

impl From<[u8; 18]> for Value
[src]

Performs the conversion.

impl From<isize> for Value
[src]

Performs the conversion.

impl From<[u8; 0]> for Value
[src]

Performs the conversion.

impl From<[u8; 4]> for Value
[src]

Performs the conversion.

impl From<[u8; 16]> for Value
[src]

Performs the conversion.

impl From<u8> for Value
[src]

Performs the conversion.

impl From<i32> for Value
[src]

Performs the conversion.

impl From<i64> for Value
[src]

Performs the conversion.

impl From<Duration> for Value
[src]

Performs the conversion.

impl From<f32> for Value
[src]

Performs the conversion.

impl From<[u8; 27]> for Value
[src]

Performs the conversion.

impl From<u32> for Value
[src]

Performs the conversion.

impl From<[u8; 22]> for Value
[src]

Performs the conversion.

impl From<[u8; 13]> for Value
[src]

Performs the conversion.

impl From<[u8; 11]> for Value
[src]

Performs the conversion.

impl From<[u8; 3]> for Value
[src]

Performs the conversion.

impl From<i8> for Value
[src]

Performs the conversion.

impl From<[u8; 1]> for Value
[src]

Performs the conversion.

impl From<u16> for Value
[src]

Performs the conversion.

impl From<usize> for Value
[src]

Performs the conversion.

impl<'a> From<&'a [u8]> for Value
[src]

Performs the conversion.

impl From<[u8; 14]> for Value
[src]

Performs the conversion.

impl From<[u8; 23]> for Value
[src]

Performs the conversion.

impl From<[u8; 32]> for Value
[src]

Performs the conversion.

impl From<Duration> for Value
[src]

Performs the conversion.

impl From<u64> for Value
[src]

Performs the conversion.

impl From<[u8; 30]> for Value
[src]

Performs the conversion.

impl From<[u8; 24]> for Value
[src]

Performs the conversion.

impl From<Timespec> for Value
[src]

Performs the conversion.

impl From<[u8; 25]> for Value
[src]

Performs the conversion.

impl<T> From<Serialized<T>> for Value where
    T: Serialize
[src]

Performs the conversion.

impl From<[u8; 5]> for Value
[src]

Performs the conversion.

impl From<NaiveDateTime> for Value
[src]

Performs the conversion.

impl<'a> From<&'a str> for Value
[src]

Performs the conversion.

impl From<[u8; 12]> for Value
[src]

Performs the conversion.

impl From<Vec<u8>> for Value
[src]

Performs the conversion.

impl From<[u8; 26]> for Value
[src]

Performs the conversion.

impl From<[u8; 19]> for Value
[src]

Performs the conversion.

impl From<[u8; 6]> for Value
[src]

Performs the conversion.

impl From<[u8; 17]> for Value
[src]

Performs the conversion.

impl Into<Value> for Uuid
[src]

Performs the conversion.

impl ConvIr<Value> for Value
[src]

impl PartialEq<Value> for Value
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Value

impl Sync for Value