pub trait BootstrapLoader<App, Args: Async>where
App: HasBootstrapType + HasErrorType,{
// Required method
fn load_bootstrap(
app: &App,
args: &Args,
) -> impl Future<Output = Result<App::Bootstrap, App::Error>> + Send;
}Required Methods§
fn load_bootstrap( app: &App, args: &Args, ) -> impl Future<Output = Result<App::Bootstrap, App::Error>> + Send
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.