pub trait RuntimeControl {
// Required methods
fn id(&self) -> u32;
fn stop(&self);
fn stopped(&self) -> BoxFuture<'_, i32>;
}Expand description
Runtime control interface
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".