[][src]Struct clips_sys::environmentData

#[repr(C)]
pub struct environmentData {
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>,
    pub context: *mut c_void,
    pub TrueSymbol: *mut CLIPSLexeme,
    pub FalseSymbol: *mut CLIPSLexeme,
    pub VoidConstant: *mut CLIPSVoid,
    pub theData: *mut *mut c_void,
    pub cleanupFunctions: *mut Option<unsafe extern "C" fn(arg1: *mut Environment)>,
    pub listOfCleanupEnvironmentFunctions: *mut environmentCleanupFunction,
    pub next: *mut environmentData,
}

Fields

_bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>context: *mut c_voidTrueSymbol: *mut CLIPSLexemeFalseSymbol: *mut CLIPSLexemeVoidConstant: *mut CLIPSVoidtheData: *mut *mut c_voidcleanupFunctions: *mut Option<unsafe extern "C" fn(arg1: *mut Environment)>listOfCleanupEnvironmentFunctions: *mut environmentCleanupFunctionnext: *mut environmentData

Methods

impl environmentData[src]

pub fn initialized(&self) -> c_uint[src]

pub fn set_initialized(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(initialized: c_uint) -> __BindgenBitfieldUnit<[u8; 1], u8>[src]

Trait Implementations

impl Clone for environmentData[src]

impl Copy for environmentData[src]

impl Debug for environmentData[src]

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