pub struct PartialStream<S>(pub S);
Expand description
Stream type which indicates that the stream is partial if end of input is reached
Tuple Fields§
§0: S
Trait Implementations§
Source§impl<S: Clone> Clone for PartialStream<S>
impl<S: Clone> Clone for PartialStream<S>
Source§fn clone(&self) -> PartialStream<S>
fn clone(&self) -> PartialStream<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 PartialStream<S>
impl<S: Debug> Debug for PartialStream<S>
Source§impl<S> FullRangeStream for PartialStream<S>where
S: FullRangeStream,
impl<S> FullRangeStream for PartialStream<S>where
S: FullRangeStream,
Source§impl<S: Ord> Ord for PartialStream<S>
impl<S: Ord> Ord for PartialStream<S>
Source§fn cmp(&self, other: &PartialStream<S>) -> Ordering
fn cmp(&self, other: &PartialStream<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 PartialStream<S>
impl<S: PartialEq> PartialEq for PartialStream<S>
Source§impl<S: PartialOrd> PartialOrd for PartialStream<S>
impl<S: PartialOrd> PartialOrd for PartialStream<S>
Source§impl<S> Positioned for PartialStream<S>where
S: Positioned,
impl<S> Positioned for PartialStream<S>where
S: Positioned,
Source§impl<S> RangeStreamOnce for PartialStream<S>where
S: RangeStreamOnce,
impl<S> RangeStreamOnce for PartialStream<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,
) -> FastResult<Self::Range, StreamErrorFor<Self>>
fn uncons_while1<F>( &mut self, f: F, ) -> FastResult<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§impl<S> Resetable for PartialStream<S>where
S: Resetable,
impl<S> Resetable for PartialStream<S>where
S: Resetable,
type Checkpoint = <S as Resetable>::Checkpoint
fn checkpoint(&self) -> Self::Checkpoint
fn reset(&mut self, checkpoint: Self::Checkpoint)
Source§impl<S> StreamOnce for PartialStream<S>where
S: StreamOnce,
impl<S> StreamOnce for PartialStream<S>where
S: StreamOnce,
Source§type Item = <S as StreamOnce>::Item
type Item = <S as StreamOnce>::Item
The type of items which is yielded from this stream.
Source§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::Item
for this type.Source§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::Item, StreamErrorFor<Self>>
fn uncons(&mut self) -> Result<S::Item, StreamErrorFor<Self>>
Takes a stream and removes its first item, yielding the item 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 PartialStream<S>
impl<S: Eq> Eq for PartialStream<S>
impl<S> StructuralPartialEq for PartialStream<S>
Auto Trait Implementations§
impl<S> Freeze for PartialStream<S>where
S: Freeze,
impl<S> RefUnwindSafe for PartialStream<S>where
S: RefUnwindSafe,
impl<S> Send for PartialStream<S>where
S: Send,
impl<S> Sync for PartialStream<S>where
S: Sync,
impl<S> Unpin for PartialStream<S>where
S: Unpin,
impl<S> UnwindSafe for PartialStream<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more