Fix clippy: Derive Eq for Data
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
9cec1a7384
commit
4cadd9b937
|
@ -60,7 +60,7 @@ pub(crate) mod update_data {
|
||||||
|
|
||||||
use super::Alerts;
|
use super::Alerts;
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Serialize, Default)]
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Default)]
|
||||||
pub(crate) struct Data {
|
pub(crate) struct Data {
|
||||||
pub(crate) alerts: Option<Alerts>,
|
pub(crate) alerts: Option<Alerts>,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue