[][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 Debug for CaptureTreeNode[src]

impl Index<usize> for CaptureTreeNode[src]

type Output = CaptureTreeNode

The returned type after indexing.

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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