Fix clippy: Derive Eq for Report
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
afe132ae5b
commit
6c65b022ff
|
@ -3,7 +3,7 @@
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
/// A struct containing info about a report.
|
/// A struct containing info about a report.
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
|
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
|
||||||
pub struct Report {
|
pub struct Report {
|
||||||
/// The ID of the report.
|
/// The ID of the report.
|
||||||
pub id: String,
|
pub id: String,
|
||||||
|
|
Loading…
Reference in New Issue