[][src]Struct clips_sys::partialMatch

#[repr(C)]
pub struct partialMatch {
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>,
    pub bcount: c_ushort,
    pub hashValue: c_ulong,
    pub owner: *mut c_void,
    pub marker: *mut c_void,
    pub dependents: *mut c_void,
    pub nextInMemory: *mut PartialMatch,
    pub prevInMemory: *mut PartialMatch,
    pub children: *mut PartialMatch,
    pub rightParent: *mut PartialMatch,
    pub nextRightChild: *mut PartialMatch,
    pub prevRightChild: *mut PartialMatch,
    pub leftParent: *mut PartialMatch,
    pub nextLeftChild: *mut PartialMatch,
    pub prevLeftChild: *mut PartialMatch,
    pub blockList: *mut PartialMatch,
    pub nextBlocked: *mut PartialMatch,
    pub prevBlocked: *mut PartialMatch,
    pub binds: [GenericMatch; 1],
}

Fields

_bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>bcount: c_ushorthashValue: c_ulongowner: *mut c_voidmarker: *mut c_voiddependents: *mut c_voidnextInMemory: *mut PartialMatchprevInMemory: *mut PartialMatchchildren: *mut PartialMatchrightParent: *mut PartialMatchnextRightChild: *mut PartialMatchprevRightChild: *mut PartialMatchleftParent: *mut PartialMatchnextLeftChild: *mut PartialMatchprevLeftChild: *mut PartialMatchblockList: *mut PartialMatchnextBlocked: *mut PartialMatchprevBlocked: *mut PartialMatchbinds: [GenericMatch; 1]

Methods

impl partialMatch[src]

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

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

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

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

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

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

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

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

pub fn new_bitfield_1(
    betaMemory: c_uint,
    busy: c_uint,
    rhsMemory: c_uint,
    deleting: c_uint
) -> __BindgenBitfieldUnit<[u8; 1], u8>
[src]

Trait Implementations

impl Clone for partialMatch[src]

impl Copy for partialMatch[src]

impl Debug for partialMatch[src]

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