pub struct QueryMemoryResponse {
pub start_addr: u16,
pub data: Vec<Option<u8>>,
}Expand description
The memory data at a requested address
Fields§
§start_addr: u16The first address in memory represented by the data
data: Vec<Option<u8>>The data in memory at that space.
None indicates memory that should not be available
Trait Implementations§
Source§impl Clone for QueryMemoryResponse
impl Clone for QueryMemoryResponse
Source§fn clone(&self) -> QueryMemoryResponse
fn clone(&self) -> QueryMemoryResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueryMemoryResponse
impl Debug for QueryMemoryResponse
Source§impl PartialEq for QueryMemoryResponse
impl PartialEq for QueryMemoryResponse
impl Eq for QueryMemoryResponse
impl StructuralPartialEq for QueryMemoryResponse
Auto Trait Implementations§
impl Freeze for QueryMemoryResponse
impl RefUnwindSafe for QueryMemoryResponse
impl Send for QueryMemoryResponse
impl Sync for QueryMemoryResponse
impl Unpin for QueryMemoryResponse
impl UnsafeUnpin for QueryMemoryResponse
impl UnwindSafe for QueryMemoryResponse
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