Struct combine::stream::SliceStream [−][src]
pub struct SliceStream<'a, T>(pub &'a [T]);
Expand description
Newtype for constructing a stream from a slice where the items in the slice are not copyable.
Trait Implementations
type Positioner = IndexPositioner
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Takes size
elements from the stream.
Fails if the length of the stream is less than size
. Read more
fn uncons_while<F>(&mut self, f: F) -> Result<&'a [T], StreamErrorFor<Self>> where
F: FnMut(Self::Token) -> bool,
fn uncons_while<F>(&mut self, f: F) -> Result<&'a [T], StreamErrorFor<Self>> where
F: FnMut(Self::Token) -> bool,
Takes items from stream, testing each one with predicate
.
returns the range of items which passed predicate
. Read more
fn uncons_while1<F>(
&mut self,
f: F
) -> ParseResult<Self::Range, StreamErrorFor<Self>> where
F: FnMut(Self::Token) -> bool,
fn uncons_while1<F>(
&mut self,
f: F
) -> ParseResult<Self::Range, StreamErrorFor<Self>> where
F: FnMut(Self::Token) -> bool,
Takes items from stream, testing each one with predicate
returns a range of at least one items which passed predicate
. Read more
Returns the distance between self
and end
. The returned usize
must be so that Read more
type Checkpoint = Self
Creates a Checkpoint
at the current position which can be used to reset the stream
later to the current position Read more
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::Token
for this type. Read more
type Position = PointerOffset<[T]>
type Position = PointerOffset<[T]>
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 = UnexpectedParse
Takes a stream and removes its first token, yielding the token and the rest of the elements.
Returns Err
if no element could be retrieved. Read more
Returns true
if this stream only contains partial input. Read more
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for SliceStream<'a, T> where
T: RefUnwindSafe,
impl<'a, T> Send for SliceStream<'a, T> where
T: Sync,
impl<'a, T> Sync for SliceStream<'a, T> where
T: Sync,
impl<'a, T> Unpin for SliceStream<'a, T>
impl<'a, T> UnwindSafe for SliceStream<'a, T> where
T: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more