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