pub struct InProcHandle { /* private fields */ }Expand description
Application-side handle to an InProcFace.
Send Interests with send; receive Data/Nacks with
recv.
The receiver is wrapped in a Mutex so that recv() takes &self,
enabling shared ownership (e.g. concurrent send/recv from different tasks).
Implementations§
Auto Trait Implementations§
impl !Freeze for InProcHandle
impl !RefUnwindSafe for InProcHandle
impl Send for InProcHandle
impl Sync for InProcHandle
impl Unpin for InProcHandle
impl UnwindSafe for InProcHandle
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