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
impl Clone for OnigCaptureTreeNodeStruct
Source§fn clone(&self) -> OnigCaptureTreeNodeStruct
fn clone(&self) -> OnigCaptureTreeNodeStruct
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more