A simple event dispatcher for Rust that is not susceptible to the slow-receiver problem.
```rust
struct MyEvent(String);
let dispatcher = Dispatcher::
tokio::spawn(async move { while let Some(event) = subscriber.next().await { println!("Event: {}", event.0); } })
dispatcher.dispatch(MyEvent("Hello World!".into())).await; ```