pub struct HostMapping { /* private fields */ }
Expand description
A representation of a host mapping of a shared memory region, which will be released when this structure is Drop’d. This is not individually Clone (since it holds ownership of the mapping), or Send or Sync, since it doesn’t ensure any particular synchronization.
Trait Implementations§
Source§impl Debug for HostMapping
impl Debug for HostMapping
Auto Trait Implementations§
impl Freeze for HostMapping
impl RefUnwindSafe for HostMapping
impl !Send for HostMapping
impl !Sync for HostMapping
impl Unpin for HostMapping
impl UnwindSafe for HostMapping
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