[][src]Struct clips_sys::joinNode

#[repr(C)]
pub struct joinNode {
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u16>,
    pub bsaveID: c_ulong,
    pub memoryLeftAdds: c_longlong,
    pub memoryRightAdds: c_longlong,
    pub memoryLeftDeletes: c_longlong,
    pub memoryRightDeletes: c_longlong,
    pub memoryCompares: c_longlong,
    pub leftMemory: *mut betaMemory,
    pub rightMemory: *mut betaMemory,
    pub networkTest: *mut Expression,
    pub secondaryNetworkTest: *mut Expression,
    pub leftHash: *mut Expression,
    pub rightHash: *mut Expression,
    pub rightSideEntryStructure: *mut c_void,
    pub nextLinks: *mut joinLink,
    pub lastLevel: *mut joinNode,
    pub rightMatchNode: *mut joinNode,
    pub ruleToActivate: *mut Defrule,
}

Fields

_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u16>bsaveID: c_ulongmemoryLeftAdds: c_longlongmemoryRightAdds: c_longlongmemoryLeftDeletes: c_longlongmemoryRightDeletes: c_longlongmemoryCompares: c_longlongleftMemory: *mut betaMemoryrightMemory: *mut betaMemorynetworkTest: *mut ExpressionsecondaryNetworkTest: *mut ExpressionleftHash: *mut ExpressionrightHash: *mut ExpressionrightSideEntryStructure: *mut c_voidnextLinks: *mut joinLinklastLevel: *mut joinNoderightMatchNode: *mut joinNoderuleToActivate: *mut Defrule

Methods

impl joinNode[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub fn new_bitfield_1(
    firstJoin: c_uint,
    logicalJoin: c_uint,
    joinFromTheRight: c_uint,
    patternIsNegated: c_uint,
    patternIsExists: c_uint,
    initialize: c_uint,
    marked: c_uint,
    rhsType: c_uint,
    depth: c_uint
) -> __BindgenBitfieldUnit<[u8; 4], u16>
[src]

Trait Implementations

impl Clone for joinNode[src]

impl Copy for joinNode[src]

impl Debug for joinNode[src]

impl Default for joinNode[src]

Auto Trait Implementations

impl RefUnwindSafe for joinNode

impl !Send for joinNode

impl !Sync for joinNode

impl Unpin for joinNode

impl UnwindSafe for joinNode

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.