pub trait FromRow {
// Required method
fn from_row(row: &Row) -> Result<Self, Error>
where Self: Sized;
}
Expand description
Veritabanı satırlarını Rust struct’larına dönüştürmek için trait.
Bu trait, FromRow
derive makrosu tarafından uygulanır.