Fix clippy: Derive Eq for Relationship
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
6c65b022ff
commit
0ba5ca3599
|
@ -4,7 +4,7 @@
|
|||
use serde::{Deserialize, Serialize};
|
||||
|
||||
/// A struct containing information about a relationship with another account.
|
||||
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
|
||||
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
|
||||
pub struct Relationship {
|
||||
/// Target account id
|
||||
pub id: String,
|
||||
|
|
Loading…
Reference in New Issue