[][src]Function serde_rusqlite::from_row

pub fn from_row<'row, D: DeserializeOwned>(row: &'row Row) -> Result<D>

Deserializes an instance of D: serde::Deserialize from rusqlite::Row. This function will not work for deserialization into types that need field names, but don't carry them on their own, e.g. Map.

You should supply this function to query_map()