#[repr(C)]pub struct rc_condition_t {
pub operand1: rc_operand_t,
pub operand2: rc_operand_t,
pub required_hits: u32,
pub current_hits: u32,
pub next: *mut rc_condition_t,
pub type_: u8,
pub oper: u8,
pub pause: u8,
pub is_true: u8,
pub optimized_comparator: u8,
}Fields§
§operand1: rc_operand_t§operand2: rc_operand_t§required_hits: u32§current_hits: u32§next: *mut rc_condition_t§type_: u8§oper: u8§pause: u8§is_true: u8§optimized_comparator: u8Trait Implementations§
Source§impl Clone for rc_condition_t
impl Clone for rc_condition_t
Source§fn clone(&self) -> rc_condition_t
fn clone(&self) -> rc_condition_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 rc_condition_t
impl Debug for rc_condition_t
impl Copy for rc_condition_t
Auto Trait Implementations§
impl Freeze for rc_condition_t
impl RefUnwindSafe for rc_condition_t
impl !Send for rc_condition_t
impl !Sync for rc_condition_t
impl Unpin for rc_condition_t
impl UnwindSafe for rc_condition_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