1use crate::traits::{Executor, Reactor}; 2 3/// Supertrait to tag a type that implements all required components for a Runtime 4pub trait RuntimeKit: Executor + Reactor + std::fmt::Debug {}