Struct combine::stream::SliceStream [−][src]
Newtype for constructing a stream from a slice where the items in the slice are not copyable.
Trait Implementations
impl<'a, T> Clone for SliceStream<'a, T>
[src]
fn clone(&self) -> SliceStream<'a, T>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'a, T: Copy + 'a> Copy for SliceStream<'a, T>
[src]
impl<'a, T: Debug + 'a> Debug for SliceStream<'a, T>
[src]
impl<'a, T> DefaultPositioned for SliceStream<'a, T>
[src]
type Positioner = IndexPositioner
impl<'a, T: Eq + 'a> Eq for SliceStream<'a, T>
[src]
impl<'a, T> FullRangeStream for SliceStream<'a, T> where
T: PartialEq + 'a,
[src]
T: PartialEq + 'a,
impl<'a, T: Ord + 'a> Ord for SliceStream<'a, T>
[src]
fn cmp(&self, other: &SliceStream<'a, T>) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl<'a, T: PartialEq + 'a> PartialEq<SliceStream<'a, T>> for SliceStream<'a, T>
[src]
fn eq(&self, other: &SliceStream<'a, T>) -> bool
[src]
fn ne(&self, other: &SliceStream<'a, T>) -> bool
[src]
impl<'a, T: PartialOrd + 'a> PartialOrd<SliceStream<'a, T>> for SliceStream<'a, T>
[src]
fn partial_cmp(&self, other: &SliceStream<'a, T>) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<'a, T> Positioned for SliceStream<'a, T> where
T: PartialEq + 'a,
[src]
T: PartialEq + 'a,
impl<'a, T> RangeStreamOnce for SliceStream<'a, T> where
T: PartialEq + 'a,
[src]
T: PartialEq + 'a,
fn uncons_range(&mut self, size: usize) -> Result<&'a [T], StreamErrorFor<Self>>
[src]
fn uncons_while<F>(&mut self, f: F) -> Result<&'a [T], StreamErrorFor<Self>> where
F: FnMut(Self::Item) -> bool,
[src]
F: FnMut(Self::Item) -> bool,
fn uncons_while1<F>(
&mut self,
f: F
) -> FastResult<Self::Range, StreamErrorFor<Self>> where
F: FnMut(Self::Item) -> bool,
[src]
&mut self,
f: F
) -> FastResult<Self::Range, StreamErrorFor<Self>> where
F: FnMut(Self::Item) -> bool,
fn distance(&self, end: &Self) -> usize
[src]
impl<'a, T> Resetable for SliceStream<'a, T>
[src]
impl<'a, T> StreamOnce for SliceStream<'a, T> where
T: PartialEq + 'a,
[src]
T: PartialEq + 'a,
type Item = &'a T
The type of items which is yielded from this stream.
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::Item
for this type. Read more
type Position = PointerOffset
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
fn uncons(&mut self) -> Result<&'a T, StreamErrorFor<Self>>
[src]
fn is_partial(&self) -> bool
[src]
impl<'a, T: 'a> StructuralEq for SliceStream<'a, T>
[src]
impl<'a, T: 'a> StructuralPartialEq for SliceStream<'a, T>
[src]
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for SliceStream<'a, T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, T> Send for SliceStream<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Sync for SliceStream<'a, T> where
T: Sync,
T: Sync,
impl<'a, T> Unpin for SliceStream<'a, T>
impl<'a, T> UnwindSafe for SliceStream<'a, T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow(&self) -> &TⓘNotable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;
[src]
Notable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut TⓘNotable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;
[src]
Notable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<I> RangeStream for I where
I: RangeStreamOnce + Stream,
[src]
I: RangeStreamOnce + Stream,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,