Fix clippy: Derive Eq for UpdatePushRequest
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
3e7bd2605f
commit
3757ab90b8
|
@ -215,7 +215,7 @@ impl AddPushRequest {
|
||||||
/// client.update_push_data(&request).await.unwrap();
|
/// client.update_push_data(&request).await.unwrap();
|
||||||
/// });
|
/// });
|
||||||
/// ```
|
/// ```
|
||||||
#[derive(Debug, Default, Clone, PartialEq, Serialize)]
|
#[derive(Debug, Default, Clone, PartialEq, Eq, Serialize)]
|
||||||
pub struct UpdatePushRequest {
|
pub struct UpdatePushRequest {
|
||||||
id: String,
|
id: String,
|
||||||
follow: Option<bool>,
|
follow: Option<bool>,
|
||||||
|
|
Loading…
Reference in New Issue