pub struct PerfReport {
pub frames: u32,
pub stage_stats: Vec<StageStat>,
pub systems: Vec<SystemStat>,
}Fields§
§frames: u32§stage_stats: Vec<StageStat>§systems: Vec<SystemStat>Trait Implementations§
Source§impl Clone for PerfReport
impl Clone for PerfReport
Source§fn clone(&self) -> PerfReport
fn clone(&self) -> PerfReport
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 moreAuto Trait Implementations§
impl Freeze for PerfReport
impl RefUnwindSafe for PerfReport
impl Send for PerfReport
impl Sync for PerfReport
impl Unpin for PerfReport
impl UnsafeUnpin for PerfReport
impl UnwindSafe for PerfReport
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