pub struct HwBreakpointAddr(pub u64);
Expand description
The address of the breakpoint.
For execution breakpoints, this is the memory address of the instruction of interest; for read and write breakpoints, it is the memory address of the memory location of interest.
Tuple Fields§
§0: u64
Trait Implementations§
Source§impl Clone for HwBreakpointAddr
impl Clone for HwBreakpointAddr
Source§fn clone(&self) -> HwBreakpointAddr
fn clone(&self) -> HwBreakpointAddr
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for HwBreakpointAddr
impl Debug for HwBreakpointAddr
impl Copy for HwBreakpointAddr
Auto Trait Implementations§
impl Freeze for HwBreakpointAddr
impl RefUnwindSafe for HwBreakpointAddr
impl Send for HwBreakpointAddr
impl Sync for HwBreakpointAddr
impl Unpin for HwBreakpointAddr
impl UnwindSafe for HwBreakpointAddr
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