pub trait ColumnToVal<T> {
    // Required method
    fn to_val(self) -> Result<T, FbError>
       where Self: Sized;
}
Expand description

Define the conversion from the buffer to a value

Required Methods§

source

fn to_val(self) -> Result<T, FbError>
where Self: Sized,

Implementors§