[][src]Struct onig::CaptureTreeNode

#[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]

pub fn group(&self) -> usize[src]

The capture group number for this capture

pub fn pos(&self) -> (usize, usize)[src]

The extent of this capture

pub fn len(&self) -> usize[src]

The number of child captures this group contains

pub fn is_empty(&self) -> bool[src]

Does the node have any child captures?

Important traits for CaptureTreeNodeIter<'t>
pub fn children(&self) -> CaptureTreeNodeIter[src]

An iterator over thie children of this capture group

Trait Implementations

impl Index<usize> for CaptureTreeNode[src]

type Output = CaptureTreeNode

The returned type after indexing.

impl Debug for CaptureTreeNode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.