pub struct MemoryAccessEvent<D, P> {
pub point: P,
pub definition: Option<D>,
}Expand description
One ordered program event. An event with a definition creates one
MemoryDef; an event without one only records a queryable program point.
Fields§
§point: P§definition: Option<D>Trait Implementations§
Source§impl<D: Clone, P: Clone> Clone for MemoryAccessEvent<D, P>
impl<D: Clone, P: Clone> Clone for MemoryAccessEvent<D, P>
Source§fn clone(&self) -> MemoryAccessEvent<D, P>
fn clone(&self) -> MemoryAccessEvent<D, P>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<D: Copy, P: Copy> Copy for MemoryAccessEvent<D, P>
impl<D: Eq, P: Eq> Eq for MemoryAccessEvent<D, P>
impl<D: PartialEq, P: PartialEq> StructuralPartialEq for MemoryAccessEvent<D, P>
Auto Trait Implementations§
impl<D, P> Freeze for MemoryAccessEvent<D, P>
impl<D, P> RefUnwindSafe for MemoryAccessEvent<D, P>
impl<D, P> Send for MemoryAccessEvent<D, P>
impl<D, P> Sync for MemoryAccessEvent<D, P>
impl<D, P> Unpin for MemoryAccessEvent<D, P>
impl<D, P> UnsafeUnpin for MemoryAccessEvent<D, P>
impl<D, P> UnwindSafe for MemoryAccessEvent<D, P>
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