Struct shmem_bind::ShmemBox
source · pub struct ShmemBox<T> { /* private fields */ }Implementations§
Trait Implementations§
impl<T: Send> Send for ShmemBox<T>
impl<T: Sync> Sync for ShmemBox<T>
§Safety
shared memory is shared between processes. if it can withstand multiple processes mutating it, it can sure handle a thread or two!
Auto Trait Implementations§
impl<T> Freeze for ShmemBox<T>
impl<T> RefUnwindSafe for ShmemBox<T>where
T: RefUnwindSafe,
impl<T> Unpin for ShmemBox<T>
impl<T> UnwindSafe for ShmemBox<T>where
T: RefUnwindSafe,
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