diff options
| author | Santo Cariotti <santo@dcariotti.me> | 2022-09-10 11:04:19 +0000 |
|---|---|---|
| committer | Santo Cariotti <santo@dcariotti.me> | 2022-09-10 11:04:19 +0000 |
| commit | 58d6870c33d664157c3efc9c75686e6c0779a96f (patch) | |
| tree | ba5a2668dc6747381fa0c3a5b0614449ea5ab87d /src/pagination.rs | |
| parent | 22d993b7c076c591cde13105b8f6707433945842 (diff) | |
Drop `Debug` from Pagination
Diffstat (limited to 'src/pagination.rs')
| -rw-r--r-- | src/pagination.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pagination.rs b/src/pagination.rs index 1f902b4..51ea111 100644 --- a/src/pagination.rs +++ b/src/pagination.rs @@ -1,6 +1,6 @@ use serde::Deserialize; -#[derive(Deserialize, Debug)] +#[derive(Deserialize)] pub struct Pagination { #[serde(skip_serializing_if = "Option::is_none")] pub page: Option<i64>, |
