[][src]Struct clips_sys::constructData

#[repr(C)]
pub struct constructData {
    pub ClearReadyInProgress: bool,
    pub ClearInProgress: bool,
    pub ResetReadyInProgress: bool,
    pub ResetInProgress: bool,
    pub ClearReadyLocks: c_short,
    pub DanglingConstructs: c_int,
    pub ListOfSaveFunctions: *mut SaveCallFunctionItem,
    pub PrintWhileLoading: bool,
    pub LoadInProgress: bool,
    pub WatchCompilations: bool,
    pub CheckSyntaxMode: bool,
    pub ParsingConstruct: bool,
    pub ErrorString: *mut c_char,
    pub WarningString: *mut c_char,
    pub ParsingFileName: *mut c_char,
    pub ErrorFileName: *mut c_char,
    pub WarningFileName: *mut c_char,
    pub ErrLineNumber: c_long,
    pub WrnLineNumber: c_long,
    pub errorCaptureRouterCount: c_int,
    pub MaxErrChars: size_t,
    pub CurErrPos: size_t,
    pub MaxWrnChars: size_t,
    pub CurWrnPos: size_t,
    pub ParserErrorCallback: ParserErrorFunction,
    pub ParserErrorContext: *mut c_void,
    pub ListOfConstructs: *mut Construct,
    pub ListOfResetFunctions: *mut voidCallFunctionItem,
    pub ListOfClearFunctions: *mut voidCallFunctionItem,
    pub ListOfClearReadyFunctions: *mut boolCallFunctionItem,
    pub Executing: bool,
    pub BeforeResetCallback: BeforeResetFunction,
}

Fields

ClearReadyInProgress: boolClearInProgress: boolResetReadyInProgress: boolResetInProgress: boolClearReadyLocks: c_shortDanglingConstructs: c_intListOfSaveFunctions: *mut SaveCallFunctionItemPrintWhileLoading: boolLoadInProgress: boolWatchCompilations: boolCheckSyntaxMode: boolParsingConstruct: boolErrorString: *mut c_charWarningString: *mut c_charParsingFileName: *mut c_charErrorFileName: *mut c_charWarningFileName: *mut c_charErrLineNumber: c_longWrnLineNumber: c_longerrorCaptureRouterCount: c_intMaxErrChars: size_tCurErrPos: size_tMaxWrnChars: size_tCurWrnPos: size_tParserErrorCallback: ParserErrorFunctionParserErrorContext: *mut c_voidListOfConstructs: *mut ConstructListOfResetFunctions: *mut voidCallFunctionItemListOfClearFunctions: *mut voidCallFunctionItemListOfClearReadyFunctions: *mut boolCallFunctionItemExecuting: boolBeforeResetCallback: BeforeResetFunction

Trait Implementations

impl Clone for constructData[src]

impl Copy for constructData[src]

impl Debug for constructData[src]

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