Trait ChainBootstrapper

Source
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§

Source

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.

Implementors§

Source§

impl<Component, Bootstrap> ChainBootstrapper<Bootstrap> for Component