vibeio-cegla 0.2.3

`vibeio`-based runtime support for `cegla-*` crates.
Documentation
1
2
3
4
5
6
7
8
9
10
/// `vibeio`-based runtime for `cegla-scgi`
pub struct VibeioScgiRuntime;

impl cegla_scgi::client::Runtime for VibeioScgiRuntime {
  fn spawn(&self, future: impl std::future::Future + 'static) {
    vibeio::spawn(async move {
      future.await;
    });
  }
}