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