Tokio StreamExt [WIP]
Stream extension with new operators, this will grow over the time.
Feel free to contribute!
Todo
- [] Better readme
- [] RustDoc
- [] Further operators
Operators
Debounce
Debounce a stream until it is sattled over a given duration.
new
.debounce,
distinct until changed
Filters events, similar to the last value.
The initial value is always emitted.
new
.distinct_until_changed,
Switch Map
Reactive composing of streams.
switch_map;
Combine Latest
Collects a value from all streams and switch to a live mode. Every new combination will be emitted from now on.
switch_map;