pub struct ReadMemoryArguments {
pub memory_reference: String,
pub offset: Option<i32>,
pub count: i32,
}
Fields§
§memory_reference: String
Memory reference to the base location from which data should be read.
offset: Option<i32>
Optional offset (in bytes) to be applied to the reference location before reading data. Can be negative.
count: i32
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
Source§impl PartialEq for ReadMemoryArguments
impl PartialEq for ReadMemoryArguments
Source§impl Serialize for ReadMemoryArguments
impl Serialize for ReadMemoryArguments
impl Eq for ReadMemoryArguments
impl StructuralPartialEq for ReadMemoryArguments
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