pub trait FromRow {
// Required method
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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".