Struct combine::stream::SliceStream
source · [−]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.
Tuple Fields
0: &'a [T]
Trait Implementations
sourceimpl<'a, T> Clone for SliceStream<'a, T>
impl<'a, T> Clone for SliceStream<'a, T>
sourcefn clone(&self) -> SliceStream<'a, T>
fn clone(&self) -> SliceStream<'a, T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a, T: Debug> Debug for SliceStream<'a, T>
impl<'a, T: Debug> Debug for SliceStream<'a, T>
sourceimpl<'a, T> DefaultPositioned for SliceStream<'a, T>
impl<'a, T> DefaultPositioned for SliceStream<'a, T>
type Positioner = IndexPositioner
sourceimpl<'a, T: Ord> Ord for SliceStream<'a, T>
impl<'a, T: Ord> Ord for SliceStream<'a, T>
sourceimpl<'a, T: PartialEq> PartialEq<SliceStream<'a, T>> for SliceStream<'a, T>
impl<'a, T: PartialEq> PartialEq<SliceStream<'a, T>> for SliceStream<'a, T>
sourcefn eq(&self, other: &SliceStream<'a, T>) -> bool
fn eq(&self, other: &SliceStream<'a, T>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SliceStream<'a, T>) -> bool
fn ne(&self, other: &SliceStream<'a, T>) -> bool
This method tests for !=
.
sourceimpl<'a, T: PartialOrd> PartialOrd<SliceStream<'a, T>> for SliceStream<'a, T>
impl<'a, T: PartialOrd> PartialOrd<SliceStream<'a, T>> for SliceStream<'a, T>
sourcefn partial_cmp(&self, other: &SliceStream<'a, T>) -> Option<Ordering>
fn partial_cmp(&self, other: &SliceStream<'a, T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<'a, T> Positioned for SliceStream<'a, T> where
T: PartialEq + 'a,
impl<'a, T> Positioned for SliceStream<'a, T> where
T: PartialEq + 'a,
sourceimpl<'a, T> RangeStreamOnce for SliceStream<'a, T> where
T: PartialEq + 'a,
impl<'a, T> RangeStreamOnce for SliceStream<'a, T> where
T: PartialEq + 'a,
sourcefn uncons_range(&mut self, size: usize) -> Result<&'a [T], StreamErrorFor<Self>>
fn uncons_range(&mut self, size: usize) -> Result<&'a [T], StreamErrorFor<Self>>
Takes size
elements from the stream.
Fails if the length of the stream is less than size
. Read more
sourcefn 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
sourcefn 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
sourceimpl<'a, T> ResetStream for SliceStream<'a, T> where
Self: StreamOnce,
impl<'a, T> ResetStream for SliceStream<'a, T> where
Self: StreamOnce,
type Checkpoint = SliceStream<'a, T>
sourcefn checkpoint(&self) -> Self
fn checkpoint(&self) -> Self
Creates a Checkpoint
at the current position which can be used to reset the stream
later to the current position Read more
sourceimpl<'a, T> StreamOnce for SliceStream<'a, T> where
T: PartialEq + 'a,
impl<'a, T> StreamOnce for SliceStream<'a, T> where
T: PartialEq + 'a,
type Range = &'a [T]
type Range = &'a [T]
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
sourcefn uncons(&mut self) -> Result<&'a T, StreamErrorFor<Self>>
fn uncons(&mut self) -> Result<&'a T, StreamErrorFor<Self>>
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
sourcefn is_partial(&self) -> bool
fn is_partial(&self) -> bool
Returns true
if this stream only contains partial input. Read more
impl<'a, T: Copy> Copy for SliceStream<'a, T>
impl<'a, T: Eq> Eq for SliceStream<'a, T>
impl<'a, T> StructuralEq for SliceStream<'a, T>
impl<'a, T> StructuralPartialEq for SliceStream<'a, T>
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more