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

Required Methods§

source

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

Implementors§