pub struct PpuDebugSnapshot {
pub frame: u64,
pub scanline: i16,
pub in_vblank: bool,
pub nmi_line: bool,
pub oam_addr: u8,
}Fields§
§frame: u64§scanline: i16§in_vblank: bool§nmi_line: bool§oam_addr: u8Trait Implementations§
Source§impl Clone for PpuDebugSnapshot
impl Clone for PpuDebugSnapshot
Source§fn clone(&self) -> PpuDebugSnapshot
fn clone(&self) -> PpuDebugSnapshot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PpuDebugSnapshot
Source§impl Debug for PpuDebugSnapshot
impl Debug for PpuDebugSnapshot
impl Eq for PpuDebugSnapshot
Source§impl PartialEq for PpuDebugSnapshot
impl PartialEq for PpuDebugSnapshot
Source§fn eq(&self, other: &PpuDebugSnapshot) -> bool
fn eq(&self, other: &PpuDebugSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PpuDebugSnapshot
Auto Trait Implementations§
impl Freeze for PpuDebugSnapshot
impl RefUnwindSafe for PpuDebugSnapshot
impl Send for PpuDebugSnapshot
impl Sync for PpuDebugSnapshot
impl Unpin for PpuDebugSnapshot
impl UnsafeUnpin for PpuDebugSnapshot
impl UnwindSafe for PpuDebugSnapshot
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