Fix clippy: Derive Eq for UpdatePushRequest

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2022-12-27 18:52:16 +01:00
parent 3e7bd2605f
commit 3757ab90b8
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ impl AddPushRequest {
/// client.update_push_data(&request).await.unwrap();
/// });
/// ```
#[derive(Debug, Default, Clone, PartialEq, Serialize)]
#[derive(Debug, Default, Clone, PartialEq, Eq, Serialize)]
pub struct UpdatePushRequest {
id: String,
follow: Option<bool>,