#[repr(C)]pub struct ecs_system_stats_t {
pub first_: i64,
pub time_spent: ecs_metric_t,
pub invoke_count: ecs_metric_t,
pub last_: i64,
pub task: bool,
pub query: ecs_query_stats_t,
}Expand description
Statistics for a single system (use ecs_system_stats_get)
Fields§
§first_: i64§time_spent: ecs_metric_t< Time spent processing a system
invoke_count: ecs_metric_t< Number of times system is invoked
last_: i64§task: bool< Is system a task
query: ecs_query_stats_tTrait Implementations§
Source§impl Clone for ecs_system_stats_t
impl Clone for ecs_system_stats_t
Source§fn clone(&self) -> ecs_system_stats_t
fn clone(&self) -> ecs_system_stats_t
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 moreimpl Copy for ecs_system_stats_t
Auto Trait Implementations§
impl Freeze for ecs_system_stats_t
impl RefUnwindSafe for ecs_system_stats_t
impl Send for ecs_system_stats_t
impl Sync for ecs_system_stats_t
impl Unpin for ecs_system_stats_t
impl UnwindSafe for ecs_system_stats_t
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