1 2 3 4 5 6 7 8 9 10 11 12
use std::future::Future; use crate::smol::AsyncProcess as SmolProcess; fn run<F>(f: F) where F: Future<Output = ()>, { smol::block_on(f); } test_suites!(smol);