[][src]Struct clips_sys::engineData

#[repr(C)]
pub struct engineData {
    pub ExecutingRule: *mut Defrule,
    pub HaltRules: bool,
    pub TheLogicalJoin: *mut joinNode,
    pub TheLogicalBind: *mut partialMatch,
    pub UnsupportedDataEntities: *mut dependency,
    pub alreadyEntered: bool,
    pub ListOfAfterRuleFiresFunctions: *mut RuleFiredFunctionItem,
    pub ListOfBeforeRuleFiresFunctions: *mut RuleFiredFunctionItem,
    pub CurrentFocus: *mut FocalModule,
    pub FocusChanged: bool,
    pub WatchStatistics: bool,
    pub WatchFocus: bool,
    pub IncrementalResetInProgress: bool,
    pub JoinOperationInProgress: bool,
    pub GlobalLHSBinds: *mut partialMatch,
    pub GlobalRHSBinds: *mut partialMatch,
    pub GlobalJoin: *mut joinNode,
    pub GarbagePartialMatches: *mut partialMatch,
    pub GarbageAlphaMatches: *mut alphaMatch,
    pub AlreadyRunning: bool,
}

Fields

ExecutingRule: *mut DefruleHaltRules: boolTheLogicalJoin: *mut joinNodeTheLogicalBind: *mut partialMatchUnsupportedDataEntities: *mut dependencyalreadyEntered: boolListOfAfterRuleFiresFunctions: *mut RuleFiredFunctionItemListOfBeforeRuleFiresFunctions: *mut RuleFiredFunctionItemCurrentFocus: *mut FocalModuleFocusChanged: boolWatchStatistics: boolWatchFocus: boolIncrementalResetInProgress: boolJoinOperationInProgress: boolGlobalLHSBinds: *mut partialMatchGlobalRHSBinds: *mut partialMatchGlobalJoin: *mut joinNodeGarbagePartialMatches: *mut partialMatchGarbageAlphaMatches: *mut alphaMatchAlreadyRunning: bool

Trait Implementations

impl Clone for engineData[src]

impl Copy for engineData[src]

impl Debug for engineData[src]

impl Default for engineData[src]

Auto Trait Implementations

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.