#[repr(C)]pub struct ecs_sync_stats_t {
pub first_: i64,
pub time_spent: ecs_metric_t,
pub commands_enqueued: ecs_metric_t,
pub last_: i64,
pub system_count: i32,
pub multi_threaded: bool,
pub no_readonly: bool,
}Expand description
Statistics for sync point
Fields§
§first_: i64§time_spent: ecs_metric_t§commands_enqueued: ecs_metric_t§last_: i64§system_count: i32§multi_threaded: bool§no_readonly: boolTrait Implementations§
Source§impl Clone for ecs_sync_stats_t
impl Clone for ecs_sync_stats_t
Source§fn clone(&self) -> ecs_sync_stats_t
fn clone(&self) -> ecs_sync_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_sync_stats_t
Auto Trait Implementations§
impl Freeze for ecs_sync_stats_t
impl RefUnwindSafe for ecs_sync_stats_t
impl Send for ecs_sync_stats_t
impl Sync for ecs_sync_stats_t
impl Unpin for ecs_sync_stats_t
impl UnwindSafe for ecs_sync_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