[][src]Struct combine::parser::range::TakeWhile1

pub struct TakeWhile1<Input, F>(_, _);

Trait Implementations

impl<Input, F> Parser<Input> for TakeWhile1<Input, F> where
    Input: RangeStream,
    Input::Range: Range,
    F: FnMut(Input::Token) -> bool
[src]

type Output = Input::Range

The type which is returned if the parser is successful.

type PartialState = usize

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

Auto Trait Implementations

impl<Input, F> RefUnwindSafe for TakeWhile1<Input, F> where
    F: RefUnwindSafe

impl<Input, F> Send for TakeWhile1<Input, F> where
    F: Send

impl<Input, F> Sync for TakeWhile1<Input, F> where
    F: Sync

impl<Input, F> Unpin for TakeWhile1<Input, F> where
    F: Unpin

impl<Input, F> UnwindSafe for TakeWhile1<Input, F> where
    F: UnwindSafe

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<Input, P> EasyParser<Input> for P where
    Input: Stream,
    P: Parser<Stream<Input>> + ?Sized,
    <Input as StreamOnce>::Token: PartialEq<<Input as StreamOnce>::Token>,
    <Input as StreamOnce>::Range: PartialEq<<Input as StreamOnce>::Range>, 
[src]

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.