pub trait FromRowNamed: Sized {
// Required methods
fn from_row_ms(row: &Row) -> Result<Self>;
fn from_row_pg(row: &Row) -> Result<Self>;
}Required Methods§
fn from_row_ms(row: &Row) -> Result<Self>
fn from_row_pg(row: &Row) -> Result<Self>
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.