pub trait LaunchExEx<Node: FullNodeComponents>: Send {
// Required method
fn launch(
self,
ctx: ExExContext<Node>,
) -> impl Future<Output = Result<impl Future<Output = Result<()>> + Send>> + Send;
}Expand description
A trait for launching an ExEx.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl<Node, F, Fut, E> LaunchExEx<Node> for F
Implements LaunchExEx for any closure that takes an [ExExContext] and returns a future
resolving to an ExEx.