pub enum Type {
R(Len),
W(Len),
Rw(Len),
X,
}
Expand description
Breakpoint type.
Variants§
R(Len)
Count when we read the memory location.
W(Len)
Count when we write the memory location.
Rw(Len)
Count when we read or write the memory location.
X
Count when we execute code at the memory location.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Type
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
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