pub struct WriteEvent {
pub scanline: u16,
pub color_clock: u16,
pub addr: u16,
pub value: u8,
}Expand description
A single CPU write observed by the debugger’s optional WriteLog,
tagged with the TIA beam position at the moment it happened.
Fields§
§scanline: u16The scanline the write landed on.
color_clock: u16The color clock within that scanline.
addr: u16The 13-bit CPU address written to.
value: u8The byte written.
Trait Implementations§
Source§impl Clone for WriteEvent
impl Clone for WriteEvent
Source§fn clone(&self) -> WriteEvent
fn clone(&self) -> WriteEvent
Returns a duplicate 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 WriteEvent
impl Debug for WriteEvent
impl Copy for WriteEvent
Auto Trait Implementations§
impl Freeze for WriteEvent
impl RefUnwindSafe for WriteEvent
impl Send for WriteEvent
impl Sync for WriteEvent
impl Unpin for WriteEvent
impl UnsafeUnpin for WriteEvent
impl UnwindSafe for WriteEvent
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