async-rs 0.8.2

Async runtime abstration
Documentation
1
2
3
4
use crate::traits::{Executor, Reactor};

/// Supertrait to tag a type that implements all required components for a Runtime
pub trait RuntimeKit: Executor + Reactor + std::fmt::Debug {}