diff options
Diffstat (limited to 'src/models/search.rs')
-rw-r--r-- | src/models/search.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/models/search.rs b/src/models/search.rs index e7d8189..ab7567f 100644 --- a/src/models/search.rs +++ b/src/models/search.rs @@ -301,7 +301,10 @@ pub struct DatabaseQuery { } impl Pageable for DatabaseQuery { - fn start_from(self, starting_point: Option<PagingCursor>) -> Self { + fn start_from( + self, + starting_point: Option<PagingCursor>, + ) -> Self { DatabaseQuery { paging: Some(Paging { start_cursor: starting_point, |