[][src]Struct clips_sys::defrule

#[repr(C)]
pub struct defrule {
    pub header: ConstructHeader,
    pub salience: c_int,
    pub localVarCnt: c_ushort,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2], u16>,
    pub dynamicSalience: *mut expr,
    pub actions: *mut expr,
    pub logicalJoin: *mut joinNode,
    pub lastJoin: *mut joinNode,
    pub disjunct: *mut Defrule,
}

Fields

header: ConstructHeadersalience: c_intlocalVarCnt: c_ushort_bitfield_1: __BindgenBitfieldUnit<[u8; 2], u16>dynamicSalience: *mut expractions: *mut exprlogicalJoin: *mut joinNodelastJoin: *mut joinNodedisjunct: *mut Defrule

Methods

impl defrule[src]

pub fn complexity(&self) -> c_uint[src]

pub fn set_complexity(&mut self, val: c_uint)[src]

pub fn afterBreakpoint(&self) -> c_uint[src]

pub fn set_afterBreakpoint(&mut self, val: c_uint)[src]

pub fn watchActivation(&self) -> c_uint[src]

pub fn set_watchActivation(&mut self, val: c_uint)[src]

pub fn watchFiring(&self) -> c_uint[src]

pub fn set_watchFiring(&mut self, val: c_uint)[src]

pub fn autoFocus(&self) -> c_uint[src]

pub fn set_autoFocus(&mut self, val: c_uint)[src]

pub fn executing(&self) -> c_uint[src]

pub fn set_executing(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(
    complexity: c_uint,
    afterBreakpoint: c_uint,
    watchActivation: c_uint,
    watchFiring: c_uint,
    autoFocus: c_uint,
    executing: c_uint
) -> __BindgenBitfieldUnit<[u8; 2], u16>
[src]

Trait Implementations

impl Clone for defrule[src]

impl Copy for defrule[src]

impl Debug for defrule[src]

impl Default for defrule[src]

Auto Trait Implementations

impl RefUnwindSafe for defrule

impl !Send for defrule

impl !Sync for defrule

impl Unpin for defrule

impl UnwindSafe for defrule

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.