#[repr(C)]pub struct ecs_hashmap_t {
pub hash: ecs_hash_value_action_t,
pub compare: ecs_compare_action_t,
pub key_size: ecs_size_t,
pub value_size: ecs_size_t,
pub hashmap_allocator: *mut ecs_block_allocator_t,
pub bucket_allocator: ecs_block_allocator_t,
pub impl_: ecs_map_t,
}Fields§
§hash: ecs_hash_value_action_t§compare: ecs_compare_action_t§key_size: ecs_size_t§value_size: ecs_size_t§hashmap_allocator: *mut ecs_block_allocator_t§bucket_allocator: ecs_block_allocator_t§impl_: ecs_map_tTrait Implementations§
Source§impl Clone for ecs_hashmap_t
impl Clone for ecs_hashmap_t
Source§fn clone(&self) -> ecs_hashmap_t
fn clone(&self) -> ecs_hashmap_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 moreSource§impl Debug for ecs_hashmap_t
impl Debug for ecs_hashmap_t
impl Copy for ecs_hashmap_t
Auto Trait Implementations§
impl Freeze for ecs_hashmap_t
impl RefUnwindSafe for ecs_hashmap_t
impl !Send for ecs_hashmap_t
impl !Sync for ecs_hashmap_t
impl Unpin for ecs_hashmap_t
impl UnwindSafe for ecs_hashmap_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