#[repr(C)]pub struct ecs_table_cache_iter_t {
pub cur: *mut ecs_table_cache_hdr_t,
pub next: *mut ecs_table_cache_hdr_t,
pub next_list: *mut ecs_table_cache_hdr_t,
}Expand description
Convenience struct to iterate table array for id
Fields§
§cur: *mut ecs_table_cache_hdr_t§next: *mut ecs_table_cache_hdr_t§next_list: *mut ecs_table_cache_hdr_tTrait Implementations§
Source§impl Clone for ecs_table_cache_iter_t
impl Clone for ecs_table_cache_iter_t
Source§fn clone(&self) -> ecs_table_cache_iter_t
fn clone(&self) -> ecs_table_cache_iter_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_table_cache_iter_t
impl Debug for ecs_table_cache_iter_t
impl Copy for ecs_table_cache_iter_t
Auto Trait Implementations§
impl Freeze for ecs_table_cache_iter_t
impl RefUnwindSafe for ecs_table_cache_iter_t
impl !Send for ecs_table_cache_iter_t
impl !Sync for ecs_table_cache_iter_t
impl Unpin for ecs_table_cache_iter_t
impl UnwindSafe for ecs_table_cache_iter_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