Struct libscemu::emu::breakpoint::Breakpoint
source · [−]pub struct Breakpoint { /* private fields */ }Implementations
sourceimpl Breakpoint
impl Breakpoint
pub fn new() -> Breakpoint
pub fn set_bp(&mut self, addr: u64)
pub fn clear_bp(&mut self)
pub fn set_mem_read(&mut self, addr: u64)
pub fn set_mem_write(&mut self, addr: u64)
pub fn set_instruction(&mut self, ins: u64)
pub fn get_bp(&self) -> u64
pub fn get_mem_read(&self) -> u64
pub fn get_mem_write(&self) -> u64
pub fn get_instruction(&self) -> u64
pub fn show(&self)
Trait Implementations
sourceimpl Clone for Breakpoint
impl Clone for Breakpoint
sourcefn clone(&self) -> Breakpoint
fn clone(&self) -> Breakpoint
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations
impl RefUnwindSafe for Breakpoint
impl Send for Breakpoint
impl Sync for Breakpoint
impl Unpin for Breakpoint
impl UnwindSafe for Breakpoint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more