Fix clippy: Derive Eq for Keys
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
cb4c0c24a9
commit
e0b686fb27
|
@ -12,7 +12,7 @@ use crate::{
|
||||||
///
|
///
|
||||||
/// let keys = Keys::new("anetohias===", "oeatssah=");
|
/// let keys = Keys::new("anetohias===", "oeatssah=");
|
||||||
/// ```
|
/// ```
|
||||||
#[derive(Debug, Default, Clone, PartialEq)]
|
#[derive(Debug, Default, Clone, PartialEq, Eq)]
|
||||||
pub struct Keys {
|
pub struct Keys {
|
||||||
pub(crate) p256dh: String,
|
pub(crate) p256dh: String,
|
||||||
pub(crate) auth: String,
|
pub(crate) auth: String,
|
||||||
|
|
Loading…
Reference in New Issue