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