pub struct Decrypted {
    pub want_close_before_decrypt: bool,
    pub plaintext: PlainMessage,
}Expand description
Result of decryption.
Fields§
§want_close_before_decrypt: boolWhether the peer appears to be getting close to encrypting too many messages with this key.
plaintext: PlainMessageThe 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