pub trait FromRow {
    fn try_from(row: Vec<Column>) -> Result<Self, FbError>
    where
        Self: Sized
; }
Expand description

Implemented for types that represents a list of values of columns

Required Methods

Implementations on Foreign Types

For no columns

Implementors

Allow use of a vector instead of tuples, for when the number of columns are unknow at compile time or more columns are needed than what can be used with the tuples