We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43795a8 commit 4d9a88dCopy full SHA for 4d9a88d
1 file changed
client/src/dbus/api/secret.rs
@@ -28,15 +28,6 @@ pub struct DBusSecret<'a> {
28
pub(crate) content_type: ContentType,
29
}
30
31
-impl PartialEq for DBusSecret<'_> {
32
- fn eq(&self, other: &Self) -> bool {
33
- self.parameters == other.parameters
34
- && self.value == other.value
35
- && self.content_type == other.content_type
36
- && self.session.inner().path() == other.session.inner().path()
37
- }
38
-}
39
-
40
impl<'a> DBusSecret<'a> {
41
/// Create a new plain (unencrypted) DBusSecret
42
pub fn new(session: Arc<Session<'a>>, secret: impl Into<Secret>) -> Self {
0 commit comments