pub struct MemoryRead {
pub area: MemoryArea,
pub start_address: u32,
pub size: u32,
}Expand description
Reads a number of bytes from a specified memory location
Fields§
§area: MemoryAreaThe memory area to read from
start_address: u32Address of the first byte to read
size: u32Number of bytes to read
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MemoryRead
impl RefUnwindSafe for MemoryRead
impl Send for MemoryRead
impl Sync for MemoryRead
impl Unpin for MemoryRead
impl UnwindSafe for MemoryRead
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