We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 230f167 commit 7a0021eCopy full SHA for 7a0021e
boring/src/ssl/mod.rs
@@ -69,7 +69,7 @@ use std::io;
69
use std::io::prelude::*;
70
use std::marker::PhantomData;
71
use std::mem::{self, ManuallyDrop, MaybeUninit};
72
-use std::ops::{Deref, DerefMut};
+use std::ops::Deref;
73
use std::panic::resume_unwind;
74
use std::path::Path;
75
use std::ptr::{self, NonNull};
@@ -2450,12 +2450,6 @@ impl Deref for SslCipher {
2450
}
2451
2452
2453
-impl DerefMut for SslCipher {
2454
- fn deref_mut(&mut self) -> &mut SslCipherRef {
2455
- unsafe { SslCipherRef::from_ptr_mut(self.0.as_ptr()) }
2456
- }
2457
-}
2458
-
2459
/// Reference to an [`SslCipher`].
2460
///
2461
/// [`SslCipher`]: struct.SslCipher.html
0 commit comments