You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
impl<T> Paginated<T> {
fn load_and_count_pages<U>(self, conn: &PgConnection) -> QueryResult<(Vec<U>, i64)
where
Self: LoadQuery<PgConnection, (U, i64)>,
{
let per_page = self.per_page;
let results = self.load::<(U, i64)>(conn)?;
let total = results.get(0).map(|(_, total) _total|).unwrap_or(0);
let records = results.into_iter().map(|(record, _)| record).collect();
let total_pages = (total as f64 / per_page as f64).ceil() as i64;
Ok((records, total_pages))
}
}
The seventh line of the sample code above should be:
let total = results.get(0).map(|(_, total)| _total).unwrap_or(0);
The text was updated successfully, but these errors were encountered:
Problem Description
On official guides the page Using Custom SQL and How to Extend the Query DSL, I found an error of document. See the following:
The seventh line of the sample code above should be:
The text was updated successfully, but these errors were encountered: