Trait odbc::OdbcType [] [src]

pub trait OdbcType<'a>: Sized {
    fn c_data_type() -> SqlCDataType;

    fn convert(_: &'a [u8]) -> Self { ... }
    fn column_size(&self) -> SQLULEN { ... }
    fn value_ptr(&self) -> SQLPOINTER { ... }
    fn decimal_digits(&self) -> SQLSMALLINT { ... }
}

Required Methods

Provided Methods

Implementors