pub struct WriteMemoryResponse {
pub offset: Option<u64>,
pub bytes_written: Option<u64>,
}
Expand description
Response to writeMemory
request.
Fields§
§offset: Option<u64>
Property that should be returned when allowPartial
is true to indicate the offset of the first byte of data successfully written. Can be negative.
bytes_written: Option<u64>
Property that should be returned when allowPartial
is true to indicate the number of bytes starting from address that were successfully written.
Trait Implementations§
Source§impl Clone for WriteMemoryResponse
impl Clone for WriteMemoryResponse
Source§fn clone(&self) -> WriteMemoryResponse
fn clone(&self) -> WriteMemoryResponse
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 WriteMemoryResponse
impl Debug for WriteMemoryResponse
Source§impl<'de> Deserialize<'de> for WriteMemoryResponse
impl<'de> Deserialize<'de> for WriteMemoryResponse
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 WriteMemoryResponse
impl RefUnwindSafe for WriteMemoryResponse
impl Send for WriteMemoryResponse
impl Sync for WriteMemoryResponse
impl Unpin for WriteMemoryResponse
impl UnwindSafe for WriteMemoryResponse
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