[][src]Struct reformation::Captures

pub struct Captures<'a, 't> { /* fields omitted */ }

Wrapper to get captures of regular expression

Implementations

impl<'a, 't> Captures<'a, 't>[src]

pub fn new(captures: &'a CaptureLocations, input: &'t str) -> Self[src]

pub fn get(&self, id: usize) -> Option<&'t str>[src]

Get string corresponding to id capture group

Trait Implementations

impl<'a, 't> Clone for Captures<'a, 't>[src]

impl<'a, 't> Copy for Captures<'a, 't>[src]

impl<'a, 't> Debug for Captures<'a, 't>[src]

Auto Trait Implementations

impl<'a, 't> RefUnwindSafe for Captures<'a, 't>

impl<'a, 't> Send for Captures<'a, 't>

impl<'a, 't> Sync for Captures<'a, 't>

impl<'a, 't> Unpin for Captures<'a, 't>

impl<'a, 't> UnwindSafe for Captures<'a, 't>

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.