Module jlrs::runtime::async_rt::tokio_rt

source ·
Expand description

An implementation of AsyncRuntime for tokio.

When tokio is used as a backing runtime, the following implementations of the Channel trait are provided:

The first of these is backed by the mpsc Sender and Receiver from tokio, the second by the UnboundedSender and UnboundedReceiver from the same module.

All sending halves of channels provided by tokio, that is the oneshot, mpsc, broadcast, and watch Senders, implement the OneshotSender trait.

Structs

Type Aliases