[][src]Struct combine_language::WhiteSpace

pub struct WhiteSpace<'a, 'b, I> where
    I: Stream<Token = char>,
    I::Error: ParseError<I::Token, I::Range, I::Position>, 
{ /* fields omitted */ }

A whitespace parser for a language

Trait Implementations

impl<'a, 'b, I: Clone> Clone for WhiteSpace<'a, 'b, I> where
    I: Stream<Token = char>,
    I::Error: ParseError<I::Token, I::Range, I::Position>, 
[src]

impl<'a, 'b, Input> Parser<Input> for WhiteSpace<'a, 'b, Input> where
    Input: Stream<Token = char>,
    Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, 
[src]

type Output = ()

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<'a, 'b, I> !RefUnwindSafe for WhiteSpace<'a, 'b, I>[src]

impl<'a, 'b, I> !Send for WhiteSpace<'a, 'b, I>[src]

impl<'a, 'b, I> !Sync for WhiteSpace<'a, 'b, I>[src]

impl<'a, 'b, I> Unpin for WhiteSpace<'a, 'b, I> where
    'a: 'b, 
[src]

impl<'a, 'b, I> !UnwindSafe for WhiteSpace<'a, 'b, I>[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.