Fix clippy: Derive Eq for Empty
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
3757ab90b8
commit
e53ef65d6d
|
@ -33,7 +33,7 @@ pub mod search_result;
|
|||
pub mod status;
|
||||
|
||||
/// An empty JSON object.
|
||||
#[derive(Deserialize, Serialize, Debug, Copy, Clone, PartialEq)]
|
||||
#[derive(Deserialize, Serialize, Debug, Copy, Clone, PartialEq, Eq)]
|
||||
pub struct Empty {}
|
||||
|
||||
/// The purpose of this module is to alleviate imports of many common
|
||||
|
|
Loading…
Reference in New Issue