[][src]Struct clips_sys::moduleItem

#[repr(C)]
pub struct moduleItem {
    pub name: *const c_char,
    pub moduleIndex: c_uint,
    pub allocateFunction: Option<unsafe extern "C" fn(arg1: *mut Environment) -> *mut c_void>,
    pub freeFunction: Option<unsafe extern "C" fn(arg1: *mut Environment, arg2: *mut c_void)>,
    pub bloadModuleReference: Option<unsafe extern "C" fn(arg1: *mut Environment, arg2: c_ulong) -> *mut c_void>,
    pub constructsToCModuleReference: Option<unsafe extern "C" fn(arg1: *mut Environment, arg2: *mut FILE, arg3: c_ulong, arg4: c_uint, arg5: c_uint)>,
    pub findFunction: FindConstructFunction,
    pub next: *mut ModuleItem,
}

Fields

name: *const c_charmoduleIndex: c_uintallocateFunction: Option<unsafe extern "C" fn(arg1: *mut Environment) -> *mut c_void>freeFunction: Option<unsafe extern "C" fn(arg1: *mut Environment, arg2: *mut c_void)>bloadModuleReference: Option<unsafe extern "C" fn(arg1: *mut Environment, arg2: c_ulong) -> *mut c_void>constructsToCModuleReference: Option<unsafe extern "C" fn(arg1: *mut Environment, arg2: *mut FILE, arg3: c_ulong, arg4: c_uint, arg5: c_uint)>findFunction: FindConstructFunctionnext: *mut ModuleItem

Trait Implementations

impl Clone for moduleItem[src]

impl Copy for moduleItem[src]

impl Debug for moduleItem[src]

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