pub struct Stream<S>(pub S);
Tuple Fields§
§0: S
Trait Implementations§
source§impl<S> FullRangeStream for Stream<S>where
S: FullRangeStream,
impl<S> FullRangeStream for Stream<S>where S: FullRangeStream,
source§impl<S> Positioned for Stream<S>where
S: StreamOnce + Positioned,
impl<S> Positioned for Stream<S>where S: StreamOnce + Positioned,
source§impl<S> RangeStreamOnce for Stream<S>where
S: RangeStream,
impl<S> RangeStreamOnce for Stream<S>where S: RangeStream,
source§fn uncons_range(
&mut self,
size: usize
) -> Result<Self::Range, StreamErrorFor<Self>>
fn uncons_range( &mut self, size: usize ) -> Result<Self::Range, StreamErrorFor<Self>>
Takes
size
elements from the stream.
Fails if the length of the stream is less than size
.source§fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>>where
F: FnMut(Self::Item) -> bool,
fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>>where F: FnMut(Self::Item) -> bool,
Takes items from stream, testing each one with
predicate
.
returns the range of items which passed predicate
.source§fn uncons_while1<F>(
&mut self,
f: F
) -> FastResult<Self::Range, StreamErrorFor<Self>>where
F: FnMut(Self::Item) -> bool,
fn uncons_while1<F>( &mut self, f: F ) -> FastResult<Self::Range, StreamErrorFor<Self>>where F: FnMut(Self::Item) -> bool,
Takes items from stream, testing each one with
predicate
returns a range of at least one items which passed predicate
. Read moresource§impl<S> Resetable for Stream<S>where
S: Resetable,
impl<S> Resetable for Stream<S>where S: Resetable,
type Checkpoint = <S as Resetable>::Checkpoint
fn checkpoint(&self) -> Self::Checkpoint
fn reset(&mut self, checkpoint: Self::Checkpoint)
source§impl<S> StreamOnce for Stream<S>where
S: StreamOnce + Positioned,
impl<S> StreamOnce for Stream<S>where S: StreamOnce + Positioned,
§type Item = <S as StreamOnce>::Item
type Item = <S as StreamOnce>::Item
The type of items which is yielded from this stream.
§type Range = <S as StreamOnce>::Range
type Range = <S as StreamOnce>::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.§type Position = <S as StreamOnce>::Position
type Position = <S as StreamOnce>::Position
Type which represents the position in a stream.
Ord
is required to allow parsers to determine which of two positions are further ahead.type Error = Errors<<S as StreamOnce>::Item, <S as StreamOnce>::Range, <S as StreamOnce>::Position>
source§fn uncons(&mut self) -> Result<Self::Item, StreamErrorFor<Self>>
fn uncons(&mut self) -> Result<Self::Item, StreamErrorFor<Self>>
Takes a stream and removes its first item, yielding the item and the rest of the elements.
Returns
Err
if no element could be retrieved.source§fn is_partial(&self) -> bool
fn is_partial(&self) -> bool
Returns
true
if this stream only contains partial input. Read moreimpl<S: Copy> Copy for Stream<S>
Auto Trait Implementations§
impl<S> RefUnwindSafe for Stream<S>where S: RefUnwindSafe,
impl<S> Send for Stream<S>where S: Send,
impl<S> Sync for Stream<S>where S: Sync,
impl<S> Unpin for Stream<S>where S: Unpin,
impl<S> UnwindSafe for Stream<S>where S: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more