pub trait FromRow: Sized {
// Required method
fn from_row(statement: &mut RawStatement) -> Self;
}Expand description
A trait for converting read values from a statement to a row
Required Methods§
Sourcefn from_row(statement: &mut RawStatement) -> Self
fn from_row(statement: &mut RawStatement) -> Self
Convert read values from a statement to a row
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.