Struct moa_z80::debugger::Z80Debugger
source · pub struct Z80Debugger {
pub(crate) skip_breakpoint: usize,
pub(crate) breakpoints: Vec<u16>,
}
Fields§
§skip_breakpoint: usize
§breakpoints: Vec<u16>
Implementations§
source§impl Z80Debugger
impl Z80Debugger
pub fn check_breakpoints(&mut self, pc: Z80Address) -> Result<(), Z80Error>
Trait Implementations§
source§impl Clone for Z80Debugger
impl Clone for Z80Debugger
source§fn clone(&self) -> Z80Debugger
fn clone(&self) -> Z80Debugger
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 Default for Z80Debugger
impl Default for Z80Debugger
source§fn default() -> Z80Debugger
fn default() -> Z80Debugger
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Z80Debugger
impl RefUnwindSafe for Z80Debugger
impl Send for Z80Debugger
impl Sync for Z80Debugger
impl Unpin for Z80Debugger
impl UnwindSafe for Z80Debugger
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
source§impl<T, S> IntoAddress<T> for Swhere
T: FromAddress<S>,
impl<T, S> IntoAddress<T> for Swhere
T: FromAddress<S>,
source§fn into_address(self) -> T
fn into_address(self) -> T
Translate the given address into an address of type
T