Trait mysql_connector::model::FromQueryResult
source · pub trait FromQueryResult: ModelData + Sized {
type Mapping: FromQueryResultMapping<Self>;
// Required method
fn from_mapping_and_row(
mapping: &Self::Mapping,
row: &mut Vec<Value>
) -> Result<Self, ParseError>;
}
Required Associated Types§
type Mapping: FromQueryResultMapping<Self>
Required Methods§
fn from_mapping_and_row( mapping: &Self::Mapping, row: &mut Vec<Value> ) -> Result<Self, ParseError>
Object Safety§
This trait is not object safe.