#[repr(C)]pub struct ecs_map_t {
pub bucket_shift: u8,
pub shared_allocator: bool,
pub buckets: *mut ecs_bucket_t,
pub bucket_count: i32,
pub count: i32,
pub entry_allocator: *mut ecs_block_allocator_t,
pub allocator: *mut ecs_allocator_t,
}Fields§
§bucket_shift: u8§buckets: *mut ecs_bucket_t§bucket_count: i32§count: i32§entry_allocator: *mut ecs_block_allocator_t§allocator: *mut ecs_allocator_tTrait Implementations§
Auto Trait Implementations§
impl Freeze for ecs_map_t
impl RefUnwindSafe for ecs_map_t
impl !Send for ecs_map_t
impl !Sync for ecs_map_t
impl Unpin for ecs_map_t
impl UnwindSafe for ecs_map_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