pub struct DebugSnapshot {
pub master_clock: u64,
pub cpu: CpuDebugSnapshot,
pub ppu: PpuDebugSnapshot,
}Fields§
§master_clock: u64§cpu: CpuDebugSnapshot§ppu: PpuDebugSnapshotTrait Implementations§
Source§impl Clone for DebugSnapshot
impl Clone for DebugSnapshot
Source§fn clone(&self) -> DebugSnapshot
fn clone(&self) -> DebugSnapshot
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 DebugSnapshot
Source§impl Debug for DebugSnapshot
impl Debug for DebugSnapshot
impl Eq for DebugSnapshot
Source§impl PartialEq for DebugSnapshot
impl PartialEq for DebugSnapshot
Source§fn eq(&self, other: &DebugSnapshot) -> bool
fn eq(&self, other: &DebugSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DebugSnapshot
Auto Trait Implementations§
impl Freeze for DebugSnapshot
impl RefUnwindSafe for DebugSnapshot
impl Send for DebugSnapshot
impl Sync for DebugSnapshot
impl Unpin for DebugSnapshot
impl UnsafeUnpin for DebugSnapshot
impl UnwindSafe for DebugSnapshot
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