pub trait AsyncRuntime: Send { // Required method fn shutdown(&mut self); }
Handle to an async runtime, only used to shut it down for now.