Trait stream_operators::StreamOps
source · [−]pub trait StreamOps: Stream + Sized {
fn debounce_time(self, timeout: Duration) -> DebounceTime<Self>;
fn distinct(self) -> Distinct<Self>
where
Self::Item: ItemKey;
fn distinct_until_changed(self) -> DistinctUntilChanged<Self>;
}