Trait combine::primitives::FullRangeStream
[−]
[src]
pub trait FullRangeStream: RangeStream { fn range(&self) -> Self::Range; }
A RangeStream
which is capable of providing it's entire range.
Required Methods
Implementations on Foreign Types
impl<'a> FullRangeStream for &'a str
[src]
impl<'a> FullRangeStream for &'a str
impl<'a, T> FullRangeStream for &'a [T] where
T: Clone + PartialEq,
[src]
impl<'a, T> FullRangeStream for &'a [T] where
T: Clone + PartialEq,
Implementors
impl<I, E> FullRangeStream for State<I> where
I: RangeStream<Item = E>,
I::Range: Range + Positioner<Position = E::Position>,
E: Positioner + Clone,
I: FullRangeStream,impl<'a, T> FullRangeStream for SliceStream<'a, T> where
T: Clone + PartialEq + 'a,