pub trait FromRow { fn try_from(row: Vec<Column>) -> Result<Self, FbError> where Self: Sized; }
Implemented for types that represents a list of values of columns
For no columns
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