#[repr(C)]pub struct ecs_stack_cursor_t {
pub prev: *mut ecs_stack_cursor_t,
pub page: *mut ecs_stack_page_t,
pub sp: i16,
pub is_free: bool,
pub owner: *mut ecs_stack_t,
}Fields§
§prev: *mut ecs_stack_cursor_t§page: *mut ecs_stack_page_t§sp: i16§is_free: bool§owner: *mut ecs_stack_tTrait Implementations§
Source§impl Clone for ecs_stack_cursor_t
impl Clone for ecs_stack_cursor_t
Source§fn clone(&self) -> ecs_stack_cursor_t
fn clone(&self) -> ecs_stack_cursor_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_stack_cursor_t
impl Debug for ecs_stack_cursor_t
impl Copy for ecs_stack_cursor_t
Auto Trait Implementations§
impl Freeze for ecs_stack_cursor_t
impl RefUnwindSafe for ecs_stack_cursor_t
impl !Send for ecs_stack_cursor_t
impl !Sync for ecs_stack_cursor_t
impl Unpin for ecs_stack_cursor_t
impl UnwindSafe for ecs_stack_cursor_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