Type Alias OnigCaptureTreeNode

Source
pub type OnigCaptureTreeNode = OnigCaptureTreeNodeStruct;

Aliased Type§

struct OnigCaptureTreeNode {
    pub group: i32,
    pub beg: i32,
    pub end: i32,
    pub allocated: i32,
    pub num_childs: i32,
    pub childs: *mut *mut OnigCaptureTreeNodeStruct,
}

Fields§

§group: i32§beg: i32§end: i32§allocated: i32§num_childs: i32§childs: *mut *mut OnigCaptureTreeNodeStruct

Trait Implementations

Source§

impl Clone for OnigCaptureTreeNodeStruct

Source§

fn clone(&self) -> OnigCaptureTreeNodeStruct

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for OnigCaptureTreeNodeStruct

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for OnigCaptureTreeNodeStruct

Source§

fn eq(&self, other: &OnigCaptureTreeNodeStruct) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for OnigCaptureTreeNodeStruct

Source§

impl Eq for OnigCaptureTreeNodeStruct

Source§

impl StructuralPartialEq for OnigCaptureTreeNodeStruct