another-rxrust 0.0.46

A different implementation than `rxRust` for easier use of `ReactiveX` in `Rust`.
Documentation
1
2
3
4
5
6
pub trait IScheduler<'a> {
  fn post<F>(&self, f: F)
  where
    F: Fn() + Clone + Send + Sync + 'a;
  fn abort(&self);
}