pub struct MemReader { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl ProvidesSlices for MemReader
impl ProvidesSlices for MemReader
Source§fn address_slice(&self, start: usize, end: usize) -> MemorySlice<'_> ⓘ
fn address_slice(&self, start: usize, end: usize) -> MemorySlice<'_> ⓘ
Create a slice representing the memory between the
start
and end
addresses.Source§fn address_slice_len(&self, start: usize, n: usize) -> MemorySlice<'_> ⓘ
fn address_slice_len(&self, start: usize, n: usize) -> MemorySlice<'_> ⓘ
Create a slice representing the memory between the
start
address and the address at
start + n
.Auto Trait Implementations§
impl Freeze for MemReader
impl RefUnwindSafe for MemReader
impl Send for MemReader
impl Sync for MemReader
impl Unpin for MemReader
impl UnwindSafe for MemReader
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