pub struct ReadMemoryRequestArguments {
pub memory_reference: String,
pub offset: i32,
pub count: i32,
/* private fields */
}
Fields§
§memory_reference: String
Memory reference to the base location from which data should be read.
offset: 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.
Implementations§
Source§impl ReadMemoryRequestArguments
impl ReadMemoryRequestArguments
Sourcepub fn builder() -> ReadMemoryRequestArgumentsBuilder<((), (), ())>
pub fn builder() -> ReadMemoryRequestArgumentsBuilder<((), (), ())>
Create a builder for building ReadMemoryRequestArguments
.
On the builder, call .memory_reference(...)
, .offset(...)
(optional), .count(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ReadMemoryRequestArguments
.
Trait Implementations§
Source§impl Clone for ReadMemoryRequestArguments
impl Clone for ReadMemoryRequestArguments
Source§fn clone(&self) -> ReadMemoryRequestArguments
fn clone(&self) -> ReadMemoryRequestArguments
Returns a copy 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 ReadMemoryRequestArguments
impl Debug for ReadMemoryRequestArguments
Source§impl<'de> Deserialize<'de> for ReadMemoryRequestArguments
impl<'de> Deserialize<'de> for ReadMemoryRequestArguments
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 From<ReadMemoryRequestArguments> for ProtocolMessageContent
impl From<ReadMemoryRequestArguments> for ProtocolMessageContent
Source§fn from(args: ReadMemoryRequestArguments) -> Self
fn from(args: ReadMemoryRequestArguments) -> Self
Converts to this type from the input type.
Source§impl From<ReadMemoryRequestArguments> for Request
impl From<ReadMemoryRequestArguments> for Request
Source§fn from(args: ReadMemoryRequestArguments) -> Self
fn from(args: ReadMemoryRequestArguments) -> Self
Converts to this type from the input type.
impl Eq for ReadMemoryRequestArguments
impl StructuralPartialEq for ReadMemoryRequestArguments
Auto Trait Implementations§
impl Freeze for ReadMemoryRequestArguments
impl RefUnwindSafe for ReadMemoryRequestArguments
impl Send for ReadMemoryRequestArguments
impl Sync for ReadMemoryRequestArguments
impl Unpin for ReadMemoryRequestArguments
impl UnwindSafe for ReadMemoryRequestArguments
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.