Struct combine::stream::CompleteStream
source · [−]#[repr(transparent)]pub struct CompleteStream<S>(pub S);
Expand description
Stream type which indicates that the stream is complete if end of input is reached
For most streams this is already the default but this wrapper can be used to override a nested
PartialStream
Tuple Fields
0: S
Trait Implementations
sourceimpl<S: Clone> Clone for CompleteStream<S>
impl<S: Clone> Clone for CompleteStream<S>
sourcefn clone(&self) -> CompleteStream<S>
fn clone(&self) -> CompleteStream<S>
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<S: Debug> Debug for CompleteStream<S>
impl<S: Debug> Debug for CompleteStream<S>
sourceimpl<'s, S> From<&'s mut S> for &'s mut CompleteStream<S>
impl<'s, S> From<&'s mut S> for &'s mut CompleteStream<S>
sourceimpl<S> From<S> for CompleteStream<S>
impl<S> From<S> for CompleteStream<S>
sourceimpl<S: Ord> Ord for CompleteStream<S>
impl<S: Ord> Ord for CompleteStream<S>
sourceimpl<S: PartialEq> PartialEq<CompleteStream<S>> for CompleteStream<S>
impl<S: PartialEq> PartialEq<CompleteStream<S>> for CompleteStream<S>
sourcefn eq(&self, other: &CompleteStream<S>) -> bool
fn eq(&self, other: &CompleteStream<S>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CompleteStream<S>) -> bool
fn ne(&self, other: &CompleteStream<S>) -> bool
This method tests for !=
.
sourceimpl<S: PartialOrd> PartialOrd<CompleteStream<S>> for CompleteStream<S>
impl<S: PartialOrd> PartialOrd<CompleteStream<S>> for CompleteStream<S>
sourcefn partial_cmp(&self, other: &CompleteStream<S>) -> Option<Ordering>
fn partial_cmp(&self, other: &CompleteStream<S>) -> 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<S> Positioned for CompleteStream<S> where
S: Positioned,
impl<S> Positioned for CompleteStream<S> where
S: Positioned,
sourceimpl<S> RangeStreamOnce for CompleteStream<S> where
S: RangeStreamOnce,
impl<S> RangeStreamOnce for CompleteStream<S> where
S: RangeStreamOnce,
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
. Read more
sourcefn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>> where
F: FnMut(Self::Token) -> bool,
fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, 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
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 Read more
sourceimpl<S> ResetStream for CompleteStream<S> where
S: ResetStream,
impl<S> ResetStream for CompleteStream<S> where
S: ResetStream,
type Checkpoint = <S as ResetStream>::Checkpoint
sourcefn 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 position Read more
sourceimpl<S> StreamOnce for CompleteStream<S> where
S: StreamOnce,
impl<S> StreamOnce for CompleteStream<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. Read more
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. Read more
type Error = <S as StreamOnce>::Error
sourcefn 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. Read more
sourcefn is_partial(&self) -> bool
fn is_partial(&self) -> bool
Returns true
if this stream only contains partial input. Read more
impl<S: Copy> Copy for CompleteStream<S>
impl<S: Eq> Eq for CompleteStream<S>
impl<S> StructuralEq for CompleteStream<S>
impl<S> StructuralPartialEq for CompleteStream<S>
Auto Trait Implementations
impl<S> RefUnwindSafe for CompleteStream<S> where
S: RefUnwindSafe,
impl<S> Send for CompleteStream<S> where
S: Send,
impl<S> Sync for CompleteStream<S> where
S: Sync,
impl<S> Unpin for CompleteStream<S> where
S: Unpin,
impl<S> UnwindSafe for CompleteStream<S> where
S: UnwindSafe,
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