#[repr(C)]pub struct ecs_world_stats_t__bindgen_ty_2 {
pub count: ecs_metric_t,
pub tag_count: ecs_metric_t,
pub component_count: ecs_metric_t,
pub pair_count: ecs_metric_t,
pub wildcard_count: ecs_metric_t,
pub type_count: ecs_metric_t,
pub create_count: ecs_metric_t,
pub delete_count: ecs_metric_t,
}Expand description
Components and ids
Fields§
§count: ecs_metric_t< Number of ids (excluding wildcards)
tag_count: ecs_metric_t< Number of tag ids (ids without data)
component_count: ecs_metric_t< Number of components ids (ids with data)
pair_count: ecs_metric_t< Number of pair ids
wildcard_count: ecs_metric_t< Number of wildcard ids
type_count: ecs_metric_t< Number of registered types
create_count: ecs_metric_t< Number of times id has been created
delete_count: ecs_metric_t< Number of times id has been deleted
Trait Implementations§
Source§impl Clone for ecs_world_stats_t__bindgen_ty_2
impl Clone for ecs_world_stats_t__bindgen_ty_2
Source§fn clone(&self) -> ecs_world_stats_t__bindgen_ty_2
fn clone(&self) -> ecs_world_stats_t__bindgen_ty_2
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_world_stats_t__bindgen_ty_2
Auto Trait Implementations§
impl Freeze for ecs_world_stats_t__bindgen_ty_2
impl RefUnwindSafe for ecs_world_stats_t__bindgen_ty_2
impl Send for ecs_world_stats_t__bindgen_ty_2
impl Sync for ecs_world_stats_t__bindgen_ty_2
impl Unpin for ecs_world_stats_t__bindgen_ty_2
impl UnwindSafe for ecs_world_stats_t__bindgen_ty_2
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