[][src]Struct pear::input::Pear

pub struct Pear<I: Input> {
    pub input: I,
    // some fields omitted
}

Fields

input: I

Implementations

impl<I: Input> Pear<I>[src]

pub fn new<A>(input: A) -> Pear<I> where
    I: From<A>, 
[src]

Trait Implementations

impl<I: Debug + Input> Debug for Pear<I>[src]

impl<I: Input> Deref for Pear<I>[src]

type Target = I

The resulting type after dereferencing.

impl<I: Input> DerefMut for Pear<I>[src]

impl<I: Input> From<I> for Pear<I>[src]

impl<I: Input> Input for Pear<I>[src]

type Token = I::Token

type Slice = I::Slice

type Many = I::Many

type Marker = I::Marker

type Context = I::Context

impl<I: Input + Rewind> Rewind for Pear<I>[src]

Auto Trait Implementations

impl<I> !RefUnwindSafe for Pear<I>

impl<I> !Send for Pear<I>

impl<I> !Sync for Pear<I>

impl<I> Unpin for Pear<I> where
    I: Unpin

impl<I> !UnwindSafe for Pear<I>

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<!> for T[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.