Enum mysqlbinlog::rowevents::value_type::ValueType [] [src]

pub enum ValueType {
    Unknown,
    Null,
    Tinyint(i8),
    Shortint(i16),
    Int(i32),
    Longlong(i64),
    Float(f32),
    Double(f64),
    String(Vec<u8>),
    Datetime2(i64),
    Decimal(String),
    Timestamp(u32),
}

Variants

Trait Implementations

impl Debug for ValueType
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ValueType

impl Sync for ValueType