[][src]Struct clips_sys::utilityData

#[repr(C)]
pub struct utilityData {
    pub ListOfCleanupFunctions: *mut voidCallFunctionItem,
    pub ListOfPeriodicFunctions: *mut voidCallFunctionItem,
    pub PeriodicFunctionsEnabled: bool,
    pub YieldFunctionEnabled: bool,
    pub YieldTimeFunction: Option<unsafe extern "C" fn()>,
    pub trackList: *mut trackedMemory,
    pub MasterGarbageFrame: garbageFrame,
    pub CurrentGarbageFrame: *mut garbageFrame,
    pub BinaryFileSize: size_t,
    pub BinaryFileOffset: size_t,
    pub CurrentReadBuffer: *mut c_char,
    pub CurrentReadBufferSize: size_t,
    pub CurrentReadBufferOffset: size_t,
}

Fields

ListOfCleanupFunctions: *mut voidCallFunctionItemListOfPeriodicFunctions: *mut voidCallFunctionItemPeriodicFunctionsEnabled: boolYieldFunctionEnabled: boolYieldTimeFunction: Option<unsafe extern "C" fn()>trackList: *mut trackedMemoryMasterGarbageFrame: garbageFrameCurrentGarbageFrame: *mut garbageFrameBinaryFileSize: size_tBinaryFileOffset: size_tCurrentReadBuffer: *mut c_charCurrentReadBufferSize: size_tCurrentReadBufferOffset: size_t

Trait Implementations

impl Clone for utilityData[src]

impl Copy for utilityData[src]

impl Debug for utilityData[src]

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