How could we shape an Rx like solution in the Rust Programming Language?
Would it be as simple as?
struct Observable {
}
impl Observable {
fn subscribe<T>(&self, observer: Observer) {
...
}
}
And then how would it look like if we used it? Could we support chaining?
How could we shape an Rx like solution in the Rust Programming Language?
Would it be as simple as?
And then how would it look like if we used it? Could we support chaining?