Crate rx [] [src]

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.

UncancellableSubscription

A subscription where drop() is a no-op.

Traits

Observable

A stream of values.

Observer

An observer that receives values from an observable.