[][src]Struct combine::parser::regex::Captures

pub struct Captures<F, R, Input>(_, _);
This is supported on crate feature regex only.

Trait Implementations

impl<F: Clone, R: Clone, Input: Clone> Clone for Captures<F, R, Input>[src]

impl<'a, Input, F, R> Parser<Input> for Captures<F, R, Input> where
    F: FromIterator<Input::Range>,
    R: Regex<Input::Range>,
    Input: RangeStream,
    Input::Range: Range
[src]

type Output = F

The type which is returned if the parser is successful.

type PartialState = ()

Determines the state necessary to resume parsing after more input is supplied. Read more

Auto Trait Implementations

impl<F, R, Input> RefUnwindSafe for Captures<F, R, Input> where
    R: RefUnwindSafe
[src]

impl<F, R, Input> Send for Captures<F, R, Input> where
    R: Send
[src]

impl<F, R, Input> Sync for Captures<F, R, Input> where
    R: Sync
[src]

impl<F, R, Input> Unpin for Captures<F, R, Input> where
    R: Unpin
[src]

impl<F, R, Input> UnwindSafe for Captures<F, R, Input> where
    R: UnwindSafe
[src]

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.