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]

[src]

The capture group number for this capture

[src]

The extent of this capture

[src]

The number of child captures this group contains

Important traits for CaptureTreeNodeIter<'t>
[src]

An iterator over thie children of this capture group

Trait Implementations

impl Debug for CaptureTreeNode
[src]

[src]

Formats the value using the given formatter. Read more

impl Index<usize> for CaptureTreeNode
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

Auto Trait Implementations