pub struct MemoryEventBody {
pub memory_reference: String,
pub offset: i64,
pub count: i64,
}Expand description
Arguments for a Memory event.
Fields§
§memory_reference: StringMemory reference of a memory range that has been updated.
offset: i64Starting offset in bytes where memory has been updated. Can be negative.
count: i64Number of bytes updated.
Trait Implementations§
Source§impl Clone for MemoryEventBody
impl Clone for MemoryEventBody
Source§fn clone(&self) -> MemoryEventBody
fn clone(&self) -> MemoryEventBody
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 MemoryEventBody
impl Debug for MemoryEventBody
Source§impl Default for MemoryEventBody
impl Default for MemoryEventBody
Source§fn default() -> MemoryEventBody
fn default() -> MemoryEventBody
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MemoryEventBody
impl RefUnwindSafe for MemoryEventBody
impl Send for MemoryEventBody
impl Sync for MemoryEventBody
impl Unpin for MemoryEventBody
impl UnsafeUnpin for MemoryEventBody
impl UnwindSafe for MemoryEventBody
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