async-rs 0.8.5

Async runtime abstraction
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 {}