pub trait RangeStreamOnce: StreamOnce + ResetStream {
// Required methods
fn uncons_range(
&mut self,
size: usize,
) -> Result<Self::Range, StreamErrorFor<Self>>;
fn uncons_while<F>(
&mut self,
f: F,
) -> Result<Self::Range, StreamErrorFor<Self>>
where F: FnMut(Self::Token) -> bool;
fn distance(&self, end: &Self::Checkpoint) -> usize;
fn range(&self) -> Self::Range;
// Provided method
fn uncons_while1<F>(
&mut self,
f: F,
) -> ParseResult<Self::Range, StreamErrorFor<Self>>
where F: FnMut(Self::Token) -> bool { ... }
}
Expand description
A RangeStream
is an extension of StreamOnce
which allows for zero copy parsing.
Required Methods§
sourcefn 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
.
sourcefn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>>
fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>>
Takes items from stream, testing each one with predicate
.
returns the range of items which passed predicate
.
sourcefn distance(&self, end: &Self::Checkpoint) -> usize
fn distance(&self, end: &Self::Checkpoint) -> usize
Returns the distance between self
and end
. The returned usize
must be so that
ⓘ
let start = stream.checkpoint();
stream.uncons_range(distance);
stream.distance(&start) == distance
Provided Methods§
sourcefn uncons_while1<F>(
&mut self,
f: F,
) -> ParseResult<Self::Range, StreamErrorFor<Self>>
fn uncons_while1<F>( &mut self, f: F, ) -> ParseResult<Self::Range, StreamErrorFor<Self>>
Takes items from stream, testing each one with predicate
returns a range of at least one items which passed predicate
.
§Note
This may not return PeekOk
as it should uncons at least one token.
Object Safety§
This trait is not object safe.