pub struct HostMemory { /* private fields */ }
Implementations§
Source§impl HostMemory
impl HostMemory
pub fn new() -> Self
pub fn guest_memory(&mut self) -> GuestMemory<'_>
pub fn base(&self) -> *const u8
pub fn mem_area_strat(align: u32) -> BoxedStrategy<MemArea>
Sourcepub fn invert(regions: &MemAreas) -> MemAreas
pub fn invert(regions: &MemAreas) -> MemAreas
Takes a sorted list or memareas, and gives a sorted list of memareas covering the parts of memory not covered by the previous
pub fn byte_slice_strat( size: u32, align: u32, exclude: &MemAreas, ) -> BoxedStrategy<MemArea>
Auto Trait Implementations§
impl Freeze for HostMemory
impl RefUnwindSafe for HostMemory
impl Send for HostMemory
impl Sync for HostMemory
impl Unpin for HostMemory
impl UnwindSafe for HostMemory
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more