pub trait MySerialize {
    fn serialize(&self, buf: &mut Vec<u8>);
}
Expand description

Serialization for various MySql types.

Required Methods

Serializes self into the buf.

Implementations on Foreign Types

Implementors