Struct combine::stream::MaybePartialStream
source · pub struct MaybePartialStream<S>(pub S, pub bool);
Tuple Fields§
§0: S
§1: bool
Trait Implementations§
source§impl<S: Clone> Clone for MaybePartialStream<S>
impl<S: Clone> Clone for MaybePartialStream<S>
source§fn clone(&self) -> MaybePartialStream<S>
fn clone(&self) -> MaybePartialStream<S>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<S: Debug> Debug for MaybePartialStream<S>
impl<S: Debug> Debug for MaybePartialStream<S>
source§impl<S: Ord> Ord for MaybePartialStream<S>
impl<S: Ord> Ord for MaybePartialStream<S>
source§fn cmp(&self, other: &MaybePartialStream<S>) -> Ordering
fn cmp(&self, other: &MaybePartialStream<S>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<S: PartialEq> PartialEq for MaybePartialStream<S>
impl<S: PartialEq> PartialEq for MaybePartialStream<S>
source§fn eq(&self, other: &MaybePartialStream<S>) -> bool
fn eq(&self, other: &MaybePartialStream<S>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<S: PartialOrd> PartialOrd for MaybePartialStream<S>
impl<S: PartialOrd> PartialOrd for MaybePartialStream<S>
source§fn partial_cmp(&self, other: &MaybePartialStream<S>) -> Option<Ordering>
fn partial_cmp(&self, other: &MaybePartialStream<S>) -> Option<Ordering>
1.0.0 · source§fn 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 moresource§impl<S> Positioned for MaybePartialStream<S>where
S: Positioned,
impl<S> Positioned for MaybePartialStream<S>where
S: Positioned,
source§impl<S> RangeStreamOnce for MaybePartialStream<S>where
S: RangeStreamOnce,
impl<S> RangeStreamOnce for MaybePartialStream<S>where
S: RangeStreamOnce,
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>>
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
.source§fn 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
. Read moresource§fn distance(&self, end: &Self::Checkpoint) -> usize
fn distance(&self, end: &Self::Checkpoint) -> usize
source§impl<S> ResetStream for MaybePartialStream<S>where
S: ResetStream,
impl<S> ResetStream for MaybePartialStream<S>where
S: ResetStream,
type Checkpoint = <S as ResetStream>::Checkpoint
source§fn checkpoint(&self) -> Self::Checkpoint
fn checkpoint(&self) -> Self::Checkpoint
Creates a
Checkpoint
at the current position which can be used to reset the stream
later to the current positionsource§impl<S> StreamOnce for MaybePartialStream<S>where
S: StreamOnce,
impl<S> StreamOnce for MaybePartialStream<S>where
S: StreamOnce,
§type Token = <S as StreamOnce>::Token
type Token = <S as StreamOnce>::Token
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::Token
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 = <S as StreamOnce>::Error
source§fn uncons(&mut self) -> Result<S::Token, StreamErrorFor<Self>>
fn uncons(&mut self) -> Result<S::Token, 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.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 MaybePartialStream<S>
impl<S: Eq> Eq for MaybePartialStream<S>
impl<S> StructuralPartialEq for MaybePartialStream<S>
Auto Trait Implementations§
impl<S> Freeze for MaybePartialStream<S>where
S: Freeze,
impl<S> RefUnwindSafe for MaybePartialStream<S>where
S: RefUnwindSafe,
impl<S> Send for MaybePartialStream<S>where
S: Send,
impl<S> Sync for MaybePartialStream<S>where
S: Sync,
impl<S> Unpin for MaybePartialStream<S>where
S: Unpin,
impl<S> UnwindSafe for MaybePartialStream<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