pub fn get_all<T: SqlQuery + FromRow + SqlParams>(
client: &mut Client,
params: &T,
) -> Result<Vec<T>, Error>
👎Deprecated since 0.2.0: Renamed to
fetch_all
. Please use fetch_all
function instead.Expand description
§get_all
Retrieves multiple records from the database.
This function is deprecated. Please use fetch_all
instead.