[][src]Struct clips_sys::clipsLexeme

#[repr(C)]
pub struct clipsLexeme {
    pub header: TypeHeader,
    pub next: *mut CLIPSLexeme,
    pub count: c_long,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>,
    pub contents: *const c_char,
}

Fields

header: TypeHeadernext: *mut CLIPSLexemecount: c_long_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>contents: *const c_char

Methods

impl clipsLexeme[src]

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

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

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

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

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

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

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

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

pub fn new_bitfield_1(
    permanent: c_uint,
    markedEphemeral: c_uint,
    neededSymbol: c_uint,
    bucket: c_uint
) -> __BindgenBitfieldUnit<[u8; 4], u32>
[src]

Trait Implementations

impl Clone for clipsLexeme[src]

impl Copy for clipsLexeme[src]

impl Debug for clipsLexeme[src]

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