pub trait ChainBootstrapper<Bootstrap>where
Bootstrap: HasChainDriverType + HasErrorType,{
// Required method
fn bootstrap_chain(
bootstrap: &Bootstrap,
chain_id_prefix: &str,
) -> impl Future<Output = Result<Bootstrap::ChainDriver, Bootstrap::Error>> + Send;
}
Required Methods§
fn bootstrap_chain( bootstrap: &Bootstrap, chain_id_prefix: &str, ) -> impl Future<Output = Result<Bootstrap::ChainDriver, Bootstrap::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.