[][src]Struct nom::types::Input

pub struct Input<T> {
    pub inner: T,
    pub at_eof: bool,
}

Fields

inner: Tat_eof: bool

Trait Implementations

impl<T: InputLength> InputLength for Input<T>[src]

impl<T: Offset> Offset for Input<T>[src]

impl<T: AsBytes> AsBytes for Input<T>[src]

impl<T: InputIter> InputIter for Input<T>[src]

type Item = <T as InputIter>::Item

type RawItem = <T as InputIter>::RawItem

type Iter = <T as InputIter>::Iter

type IterElem = <T as InputIter>::IterElem

impl<T: InputTake> InputTake for Input<T>[src]

impl<'b, T: Compare<&'b str>> Compare<&'b str> for Input<T>[src]

impl<T: FindToken<char>> FindToken<char> for Input<T>[src]

impl<T: FindToken<u8>> FindToken<u8> for Input<T>[src]

impl<'a, T: FindToken<&'a u8>> FindToken<&'a u8> for Input<T>[src]

impl<'b, T: FindSubstring<&'b str>> FindSubstring<&'b str> for Input<T>[src]

impl<'a, R: FromStr, T: ParseTo<R>> ParseTo<R> for Input<T>[src]

impl<T: Slice<Range<usize>>> Slice<Range<usize>> for Input<T>[src]

impl<T: Slice<RangeTo<usize>>> Slice<RangeTo<usize>> for Input<T>[src]

impl<T: Slice<RangeFrom<usize>>> Slice<RangeFrom<usize>> for Input<T>[src]

impl<T: Slice<RangeFull>> Slice<RangeFull> for Input<T>[src]

impl<T> AtEof for Input<T>[src]

impl<T: Copy> Copy for Input<T>[src]

impl<T: PartialEq> PartialEq<Input<T>> for Input<T>[src]

impl<T: Clone> Clone for Input<T>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for Input<T>[src]

impl<T: Hash> Hash for Input<T>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

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

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

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]