[][src]Struct clips_sys::construct

#[repr(C)]
pub struct construct {
    pub constructName: *const c_char,
    pub pluralName: *const c_char,
    pub parseFunction: Option<unsafe extern "C" fn(arg1: *mut Environment, arg2: *const c_char) -> bool>,
    pub findFunction: FindConstructFunction,
    pub getConstructNameFunction: Option<unsafe extern "C" fn(arg1: *mut ConstructHeader) -> *mut CLIPSLexeme>,
    pub getPPFormFunction: Option<unsafe extern "C" fn(arg1: *mut ConstructHeader) -> *const c_char>,
    pub getModuleItemFunction: Option<unsafe extern "C" fn(arg1: *mut ConstructHeader) -> *mut defmoduleItemHeader>,
    pub getNextItemFunction: GetNextConstructFunction,
    pub setNextItemFunction: Option<unsafe extern "C" fn(arg1: *mut ConstructHeader, arg2: *mut ConstructHeader)>,
    pub isConstructDeletableFunction: IsConstructDeletableFunction,
    pub deleteFunction: DeleteConstructFunction,
    pub freeFunction: FreeConstructFunction,
    pub next: *mut Construct,
}

Fields

constructName: *const c_charpluralName: *const c_charparseFunction: Option<unsafe extern "C" fn(arg1: *mut Environment, arg2: *const c_char) -> bool>findFunction: FindConstructFunctiongetConstructNameFunction: Option<unsafe extern "C" fn(arg1: *mut ConstructHeader) -> *mut CLIPSLexeme>getPPFormFunction: Option<unsafe extern "C" fn(arg1: *mut ConstructHeader) -> *const c_char>getModuleItemFunction: Option<unsafe extern "C" fn(arg1: *mut ConstructHeader) -> *mut defmoduleItemHeader>getNextItemFunction: GetNextConstructFunctionsetNextItemFunction: Option<unsafe extern "C" fn(arg1: *mut ConstructHeader, arg2: *mut ConstructHeader)>isConstructDeletableFunction: IsConstructDeletableFunctiondeleteFunction: DeleteConstructFunctionfreeFunction: FreeConstructFunctionnext: *mut Construct

Trait Implementations

impl Clone for construct[src]

impl Copy for construct[src]

impl Debug for construct[src]

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