Struct ckb_gdb_remote_protocol::Watchpoint 
source · pub struct Watchpoint {
    pub addr: u64,
    pub n_bytes: u64,
}Expand description
A descriptor for a watchpoint. The particular semantics of the watchpoint (watching memory for read or write access) are addressed elsewhere.
Fields§
§addr: u64The address.
n_bytes: u64The number of bytes covered.
Trait Implementations§
source§impl Clone for Watchpoint
 
impl Clone for Watchpoint
source§fn clone(&self) -> Watchpoint
 
fn clone(&self) -> Watchpoint
Returns a copy 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 Watchpoint
 
impl Debug for Watchpoint
source§impl PartialEq for Watchpoint
 
impl PartialEq for Watchpoint
source§fn eq(&self, other: &Watchpoint) -> bool
 
fn eq(&self, other: &Watchpoint) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for Watchpoint
impl StructuralPartialEq for Watchpoint
Auto Trait Implementations§
impl Freeze for Watchpoint
impl RefUnwindSafe for Watchpoint
impl Send for Watchpoint
impl Sync for Watchpoint
impl Unpin for Watchpoint
impl UnwindSafe for Watchpoint
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