[][src]Struct combine::stream::easy::Stream

pub struct Stream<S>(pub S);

Trait Implementations

impl<S> Positioned for Stream<S> where
    S: StreamOnce + Positioned
[src]

impl<S> StreamOnce for Stream<S> where
    S: StreamOnce + Positioned
[src]

type Item = S::Item

The type of items which is yielded from this stream.

type Range = S::Range

The type of a range of items yielded from this stream. Types which do not a have a way of yielding ranges of items should just use the Self::Item for this type. Read more

type Position = S::Position

Type which represents the position in a stream. Ord is required to allow parsers to determine which of two positions are further ahead. Read more

type Error = ParseError<S>

impl<S> Resetable for Stream<S> where
    S: Resetable
[src]

type Checkpoint = S::Checkpoint

impl<S> RangeStreamOnce for Stream<S> where
    S: RangeStream
[src]

impl<S> FullRangeStream for Stream<S> where
    S: FullRangeStream
[src]

impl<S: Clone> Clone for Stream<S>[src]

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

Performs copy-assignment from source. Read more

impl<S: Copy> Copy for Stream<S>[src]

impl<S: Debug> Debug for Stream<S>[src]

Auto Trait Implementations

impl<S> Send for Stream<S> where
    S: Send

impl<S> Sync for Stream<S> where
    S: Sync

Blanket Implementations

impl<I> Stream for I where
    I: StreamOnce + Positioned + Resetable,
    <I as StreamOnce>::Error: ParseError<<I as StreamOnce>::Item, <I as StreamOnce>::Range, <I as StreamOnce>::Position>, 
[src]

impl<I> RangeStream for I where
    I: RangeStreamOnce + Stream
[src]

impl<T> From for T[src]

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, 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> Any for T where
    T: 'static + ?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.