Expand description
Rx, a library for reactive programming in Rust. Inspired by Reactive Extensions for C#.
TODO: Add intro to observables for people who are unfamiliar with them.
TODO: Add examples.
Structs§
- Subject
- Both an observer and observable.
- Uncancellable
Subscription - A subscription where
drop()
is a no-op.
Traits§
- Observable
- A stream of values.
- Observer
- An observer that receives values from an observable.
Functions§
- error
- Returns an observable that fails with the given error when subscribed to.