#[repr(C)]pub struct ecs_rule_iter_t {
pub rule: *const ecs_rule_t,
pub vars: *mut ecs_var_t,
pub rule_vars: *mut ecs_rule_var_t,
pub ops: *mut ecs_rule_op_t,
pub op_ctx: *mut ecs_rule_op_ctx_t,
pub written: *mut u64,
pub profile: *mut ecs_rule_op_profile_t,
pub redo: bool,
pub op: i16,
pub sp: i16,
}Expand description
Rule-iterator specific data
Fields§
§rule: *const ecs_rule_t§vars: *mut ecs_var_tVariable storage
rule_vars: *mut ecs_rule_var_t§ops: *mut ecs_rule_op_t§op_ctx: *mut ecs_rule_op_ctx_tOperation-specific state
written: *mut u64§profile: *mut ecs_rule_op_profile_t§redo: bool§op: i16§sp: i16Trait Implementations§
Source§impl Clone for ecs_rule_iter_t
impl Clone for ecs_rule_iter_t
Source§fn clone(&self) -> ecs_rule_iter_t
fn clone(&self) -> ecs_rule_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_rule_iter_t
impl Debug for ecs_rule_iter_t
impl Copy for ecs_rule_iter_t
Auto Trait Implementations§
impl Freeze for ecs_rule_iter_t
impl RefUnwindSafe for ecs_rule_iter_t
impl !Send for ecs_rule_iter_t
impl !Sync for ecs_rule_iter_t
impl Unpin for ecs_rule_iter_t
impl UnwindSafe for ecs_rule_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