A Stream that only emits if the value is different.
Clone
PartialEq
with itselftoml
[dependencies]
change_stream = "0.1.0"
StreamChanged
trait and call .changed()
on an existing stream:
```rust
use change_stream::StreamChanged;
use futures::{stream::iter, StreamExt};async fn main() { let a = iter([1, 1, 2]);
a.changed().for_each(|a| async move {
dbg!(a); //will only emit 1 and 2
}).await;
} ```