pub struct TotalStats {
pub gpu_time_ms: f64,
pub gpu_start: f64,
pub gpu_end: f64,
pub pipeline_stats: PipelineStatistics,
}
Expand description
Contains frame statistics from the GPU for all pmfx jobs
Fields§
§gpu_time_ms: f64
Total GPU time spent in milliseconds
gpu_start: f64
Time of the first submission in seconds
gpu_end: f64
Time of the final submission in seconds
pipeline_stats: PipelineStatistics
Total pipeline statistics
Auto Trait Implementations§
impl Freeze for TotalStats
impl RefUnwindSafe for TotalStats
impl Send for TotalStats
impl Sync for TotalStats
impl Unpin for TotalStats
impl UnwindSafe for TotalStats
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