[][src]Struct clips_sys::defmoduleData

#[repr(C)]
pub struct defmoduleData {
    pub LastModuleItem: *mut moduleItem,
    pub AfterModuleChangeFunctions: *mut voidCallFunctionItem,
    pub ModuleStack: *mut ModuleStackItem,
    pub CallModuleChangeFunctions: bool,
    pub ListOfDefmodules: *mut Defmodule,
    pub CurrentModule: *mut Defmodule,
    pub LastDefmodule: *mut Defmodule,
    pub NumberOfModuleItems: c_uint,
    pub ListOfModuleItems: *mut moduleItem,
    pub ModuleChangeIndex: c_long,
    pub MainModuleRedefinable: bool,
    pub ListOfPortConstructItems: *mut portConstructItem,
    pub NumberOfDefmodules: c_ushort,
    pub AfterModuleDefinedFunctions: *mut voidCallFunctionItem,
    pub DefmoduleCodeItem: *mut CodeGeneratorItem,
    pub BNumberOfDefmodules: c_ulong,
    pub NumberOfPortItems: c_ulong,
    pub PortItemArray: *mut portItem,
    pub DefmoduleArray: *mut Defmodule,
}

Fields

LastModuleItem: *mut moduleItemAfterModuleChangeFunctions: *mut voidCallFunctionItemModuleStack: *mut ModuleStackItemCallModuleChangeFunctions: boolListOfDefmodules: *mut DefmoduleCurrentModule: *mut DefmoduleLastDefmodule: *mut DefmoduleNumberOfModuleItems: c_uintListOfModuleItems: *mut moduleItemModuleChangeIndex: c_longMainModuleRedefinable: boolListOfPortConstructItems: *mut portConstructItemNumberOfDefmodules: c_ushortAfterModuleDefinedFunctions: *mut voidCallFunctionItemDefmoduleCodeItem: *mut CodeGeneratorItemBNumberOfDefmodules: c_ulongNumberOfPortItems: c_ulongPortItemArray: *mut portItemDefmoduleArray: *mut Defmodule

Trait Implementations

impl Clone for defmoduleData[src]

impl Copy for defmoduleData[src]

impl Debug for defmoduleData[src]

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