pub trait FromYdbRow: Sized {
// Required method
fn from_row(row: Row) -> YdbResult<Self>;
}Expand description
Row-to-struct mapping (the sqlx FromRow analogue).
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".