pub struct ReadMemoryResponse {
pub address: String,
pub unreadable_bytes: Option<i64>,
pub data: Option<String>,
}Fields§
§address: StringThe address of the first byte of data returned.
Treated as a hex value if prefixed with 0x, or as a decimal value
otherwise.
unreadable_bytes: Option<i64>The i64 of unreadable bytes encountered after the last successfully
read byte.
This can be used to determine the i64 of bytes that should be skipped
before a subsequent readMemory request succeeds.
data: Option<String>The bytes read from memory, encoded using base64.
Trait Implementations§
Source§impl Clone for ReadMemoryResponse
impl Clone for ReadMemoryResponse
Source§fn clone(&self) -> ReadMemoryResponse
fn clone(&self) -> ReadMemoryResponse
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 ReadMemoryResponse
impl Debug for ReadMemoryResponse
Source§impl Default for ReadMemoryResponse
impl Default for ReadMemoryResponse
Source§fn default() -> ReadMemoryResponse
fn default() -> ReadMemoryResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReadMemoryResponse
impl RefUnwindSafe for ReadMemoryResponse
impl Send for ReadMemoryResponse
impl Sync for ReadMemoryResponse
impl Unpin for ReadMemoryResponse
impl UnsafeUnpin for ReadMemoryResponse
impl UnwindSafe for ReadMemoryResponse
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