[][src]Struct combine::parser::token::NoneOf

pub struct NoneOf<T, Input> where
    Input: Stream
{ /* fields omitted */ }

Trait Implementations

impl<T: Clone, Input: Clone> Clone for NoneOf<T, Input> where
    Input: Stream
[src]

impl<T: Copy, Input: Copy> Copy for NoneOf<T, Input> where
    Input: Stream
[src]

impl<Input, T> Parser<Input> for NoneOf<T, Input> where
    T: Clone + IntoIterator<Item = Input::Token>,
    Input: Stream,
    Input::Token: PartialEq
[src]

type Output = Input::Token

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<T, Input> RefUnwindSafe for NoneOf<T, Input> where
    Input: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, Input> Send for NoneOf<T, Input> where
    Input: Send,
    T: Send

impl<T, Input> Sync for NoneOf<T, Input> where
    Input: Sync,
    T: Sync

impl<T, Input> Unpin for NoneOf<T, Input> where
    Input: Unpin,
    T: Unpin

impl<T, Input> UnwindSafe for NoneOf<T, Input> where
    Input: UnwindSafe,
    T: 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<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.