Skip to main content

FromYdbRow

Trait FromYdbRow 

Source
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§

Source

fn from_row(row: Row) -> YdbResult<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§