Struct onig::CaptureTreeNode[][src]

#[repr(C)]
pub struct CaptureTreeNode { /* fields omitted */ }

Capture Tree Node

Represents a single node in the capture tree. Can be queried for information about the given capture and any child-captures that took place.

Methods

impl CaptureTreeNode
[src]

The capture group number for this capture

The extent of this capture

The number of child captures this group contains

Important traits for CaptureTreeNodeIter<'t>

An iterator over thie children of this capture group

Trait Implementations

impl Debug for CaptureTreeNode
[src]

Formats the value using the given formatter. Read more

impl Index<usize> for CaptureTreeNode
[src]

The returned type after indexing.

Performs the indexing (container[index]) operation.

Auto Trait Implementations