Fix clippy: Derive Eq for Keys

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2022-12-27 18:51:45 +01:00
parent cb4c0c24a9
commit e0b686fb27
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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,