pub trait Startable {
// Required method
fn start(&self) -> impl Future<Output = Result<()>> + Send;
}Expand description
Startable Implement this trait to allow the node to start the handler
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".