Struct haybale::watchpoints::Watchpoint[][src]

pub struct Watchpoint { /* fields omitted */ }

A Watchpoint describes a segment of memory to watch.

Implementations

impl Watchpoint[src]

pub fn new(addr: u64, bytes: u64) -> Self[src]

A memory watchpoint for the bytes bytes of memory at the given constant memory address.

pub fn get_lower_bound(&self) -> u64[src]

Get the lower bound of the memory segment being watched (inclusive).

pub fn get_upper_bound(&self) -> u64[src]

Get the upper bound of the memory segment being watched (inclusive).

Trait Implementations

impl Clone for Watchpoint[src]

impl Debug for Watchpoint[src]

impl Display for Watchpoint[src]

impl Eq for Watchpoint[src]

impl Hash for Watchpoint[src]

impl PartialEq<Watchpoint> for Watchpoint[src]

impl StructuralEq for Watchpoint[src]

impl StructuralPartialEq for Watchpoint[src]

Auto Trait Implementations

impl RefUnwindSafe for Watchpoint[src]

impl Send for Watchpoint[src]

impl Sync for Watchpoint[src]

impl Unpin for Watchpoint[src]

impl UnwindSafe for Watchpoint[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.