pub trait SelectedEntity {
    // Required method
    fn from_any_row(row: AnyRow) -> Result<Self, SqlxError>
       where Self: Sized;
}

Required Methods§

source

fn from_any_row(row: AnyRow) -> Result<Self, SqlxError>
where Self: Sized,

Implementors§