#[repr(C)]pub struct EcsWorldSummary {
pub target_fps: f64,
pub frame_time_total: f64,
pub system_time_total: f64,
pub merge_time_total: f64,
pub frame_time_last: f64,
pub system_time_last: f64,
pub merge_time_last: f64,
}Fields§
§target_fps: f64< Target FPS
frame_time_total: f64< Total time spent processing a frame
system_time_total: f64< Total time spent in systems
merge_time_total: f64< Total time spent in merges
frame_time_last: f64< Time spent processing a frame
system_time_last: f64< Time spent in systems
merge_time_last: f64< Time spent in merges
Trait Implementations§
Source§impl Clone for EcsWorldSummary
impl Clone for EcsWorldSummary
Source§fn clone(&self) -> EcsWorldSummary
fn clone(&self) -> EcsWorldSummary
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 EcsWorldSummary
impl Debug for EcsWorldSummary
impl Copy for EcsWorldSummary
Auto Trait Implementations§
impl Freeze for EcsWorldSummary
impl RefUnwindSafe for EcsWorldSummary
impl Send for EcsWorldSummary
impl Sync for EcsWorldSummary
impl Unpin for EcsWorldSummary
impl UnwindSafe for EcsWorldSummary
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