pub struct ReadMemoryArguments {
pub memory_reference: String,
pub offset: Option<u64>,
pub count: u64,
}
Expand description
Arguments for readMemory
request.
Fields§
§memory_reference: String
Memory reference to the base location from which data should be read.
offset: Option<u64>
Offset (in bytes) to be applied to the reference location before reading data. Can be negative.
count: u64
Number of bytes to read at the specified location and offset.
Trait Implementations§
Source§impl Clone for ReadMemoryArguments
impl Clone for ReadMemoryArguments
Source§fn clone(&self) -> ReadMemoryArguments
fn clone(&self) -> ReadMemoryArguments
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 ReadMemoryArguments
impl Debug for ReadMemoryArguments
Source§impl<'de> Deserialize<'de> for ReadMemoryArguments
impl<'de> Deserialize<'de> for ReadMemoryArguments
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReadMemoryArguments
impl RefUnwindSafe for ReadMemoryArguments
impl Send for ReadMemoryArguments
impl Sync for ReadMemoryArguments
impl Unpin for ReadMemoryArguments
impl UnwindSafe for ReadMemoryArguments
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