pub struct WriteMemoryResponse {
pub offset: Option<i64>,
pub bytes_written: Option<i64>,
}Fields§
§offset: Option<i64>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<i64>Property that should be returned when allowPartial is true to indicate
the i64 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 Default for WriteMemoryResponse
impl Default for WriteMemoryResponse
Source§fn default() -> WriteMemoryResponse
fn default() -> WriteMemoryResponse
Returns the “default value” for a type. 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 UnsafeUnpin 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