Fetch the current page
(&self)
| 61 | |
| 62 | /// Fetch the current page |
| 63 | pub async fn fetch(&self) -> Result<Vec<S::Item>, DbErr> { |
| 64 | self.fetch_page(self.page).await |
| 65 | } |
| 66 | |
| 67 | /// Get the total number of items |
| 68 | pub async fn num_items(&self) -> Result<u64, DbErr> { |
no test coverage detected