pub trait ColumnToVal<T> {
    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§