pub struct Breakpoint {
pub ty: Type,
pub addr: u64,
}
Expand description
Hardware breakpoint event provided by the CPU.
Breakpoints can be read/write accesses to an address as well as execution of an instruction address.
Fields§
§ty: Type
Breakpoint type.
addr: u64
Breakpoint address.
Trait Implementations§
Source§impl Clone for Breakpoint
impl Clone for Breakpoint
Source§fn clone(&self) -> Breakpoint
fn clone(&self) -> Breakpoint
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 Breakpoint
impl Debug for Breakpoint
Source§impl TryFrom<&Breakpoint> for Event
impl TryFrom<&Breakpoint> for Event
Auto Trait Implementations§
impl Freeze for Breakpoint
impl RefUnwindSafe for Breakpoint
impl Send for Breakpoint
impl Sync for Breakpoint
impl Unpin for Breakpoint
impl UnwindSafe for Breakpoint
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