Struct rustls::record_layer::Decrypted
source · pub struct Decrypted {
pub want_close_before_decrypt: bool,
pub plaintext: PlainMessage,
}
Expand description
Result of decryption.
Fields§
§want_close_before_decrypt: bool
Whether the peer appears to be getting close to encrypting too many messages with this key.
plaintext: PlainMessage
The decrypted message.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Decrypted
impl RefUnwindSafe for Decrypted
impl Send for Decrypted
impl Sync for Decrypted
impl Unpin for Decrypted
impl UnwindSafe for Decrypted
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more