[][src]Trait debil::SQLValue

pub trait SQLValue<Type> {
    fn column_type(_: PhantomData<Type>, size: i32) -> String;
fn serialize(_: Type) -> Self;
fn deserialize(self) -> Type; }

Required methods

fn column_type(_: PhantomData<Type>, size: i32) -> String

fn serialize(_: Type) -> Self

fn deserialize(self) -> Type

Loading content...

Implementations on Foreign Types

impl SQLValue<i32> for Vec<u8>[src]

impl SQLValue<String> for Vec<u8>[src]

impl<V> SQLValue<Option<V>> for Vec<u8> where
    Vec<u8>: SQLValue<V>, 
[src]

Loading content...

Implementors

Loading content...