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 RefUnwindSafe for Decrypted
impl Send for Decrypted
impl Sync for Decrypted
impl Unpin for Decrypted
impl UnwindSafe for Decrypted
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more