pub struct EncryptedIpcWriter { /* private fields */ }Expand description
Encrypted writer for sending IPC messages
Uses ChaCha20-Poly1305 authenticated encryption. Message format: [4-byte length][encrypted data]
Implementations§
Auto Trait Implementations§
impl Freeze for EncryptedIpcWriter
impl RefUnwindSafe for EncryptedIpcWriter
impl Send for EncryptedIpcWriter
impl Sync for EncryptedIpcWriter
impl Unpin for EncryptedIpcWriter
impl UnsafeUnpin for EncryptedIpcWriter
impl UnwindSafe for EncryptedIpcWriter
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