#[repr(C)]pub struct ecs_iter_cache_t {
pub stack_cursor: *mut ecs_stack_cursor_t,
pub used: ecs_flags8_t,
pub allocated: ecs_flags8_t,
}Expand description
Inline iterator arrays to prevent allocations for small array sizes
Fields§
§stack_cursor: *mut ecs_stack_cursor_tStack cursor to restore to
used: ecs_flags8_tFor which fields is the cache used
allocated: ecs_flags8_tWhich fields are allocated
Trait Implementations§
Source§impl Clone for ecs_iter_cache_t
impl Clone for ecs_iter_cache_t
Source§fn clone(&self) -> ecs_iter_cache_t
fn clone(&self) -> ecs_iter_cache_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_iter_cache_t
impl Debug for ecs_iter_cache_t
impl Copy for ecs_iter_cache_t
Auto Trait Implementations§
impl Freeze for ecs_iter_cache_t
impl RefUnwindSafe for ecs_iter_cache_t
impl !Send for ecs_iter_cache_t
impl !Sync for ecs_iter_cache_t
impl Unpin for ecs_iter_cache_t
impl UnwindSafe for ecs_iter_cache_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