Allow the sending and reciving of typed messages.
```rust use async_reply::Message;
struct Ping;
struct Pong;
let (requester, replyer) = async_reply::endpoints();
let ping_fut = async { println!("Sending Ping"); let reply = requester.send(Ping).await.unwrap(); println!("Received {:?}", reply); };
let pong_fut = async {
let (msg, handler) = replyer.recv::
pingfut.join(pongfut).await; ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.