[][src]Struct clips_sys::expressionData

#[repr(C)]
pub struct expressionData {
    pub PTR_AND: *mut FunctionDefinition,
    pub PTR_OR: *mut FunctionDefinition,
    pub PTR_EQ: *mut FunctionDefinition,
    pub PTR_NEQ: *mut FunctionDefinition,
    pub PTR_NOT: *mut FunctionDefinition,
    pub ExpressionHashTable: *mut *mut EXPRESSION_HN,
    pub NumberOfExpressions: c_ulong,
    pub ExpressionArray: *mut Expression,
    pub ExpressionCount: c_ulong,
    pub svContexts: *mut SavedContexts,
    pub ReturnContext: bool,
    pub BreakContext: bool,
    pub SequenceOpMode: bool,
}

Fields

PTR_AND: *mut FunctionDefinitionPTR_OR: *mut FunctionDefinitionPTR_EQ: *mut FunctionDefinitionPTR_NEQ: *mut FunctionDefinitionPTR_NOT: *mut FunctionDefinitionExpressionHashTable: *mut *mut EXPRESSION_HNNumberOfExpressions: c_ulongExpressionArray: *mut ExpressionExpressionCount: c_ulongsvContexts: *mut SavedContextsReturnContext: boolBreakContext: boolSequenceOpMode: bool

Trait Implementations

impl Clone for expressionData[src]

impl Copy for expressionData[src]

impl Debug for expressionData[src]

impl Default for expressionData[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.