pub async fn query_rows_helper<T, F>( conn: &Connection<'_>, sql: &str, params: &[&(dyn ToSql + Sync)], f: F, ) -> Result<Vec<T>>where F: FnMut(&Row) -> T,