aboutsummaryrefslogtreecommitdiff
path: root/src/models/paging.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/paging.rs')
-rw-r--r--src/models/paging.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/paging.rs b/src/models/paging.rs
index 481c235..0f42f23 100644
--- a/src/models/paging.rs
+++ b/src/models/paging.rs
@@ -13,5 +13,5 @@ pub struct Paging {
}
pub trait Pageable {
- fn start_from(self, starting_point: Paging) -> Self;
+ fn start_from(self, starting_point: Option<PagingCursor>) -> Self;
}