pub trait HasBootstrapAt<const I: usize>: HasChainDriverTypeAt<I> {
type Bootstrap: HasChainDriverType<ChainDriver = ChainDriverTypeAt<Self, I>>;
// Required method
fn chain_bootstrap(&self, index: Index<I>) -> &Self::Bootstrap;
}
Required Associated Types§
type Bootstrap: HasChainDriverType<ChainDriver = ChainDriverTypeAt<Self, I>>
Required Methods§
fn chain_bootstrap(&self, index: Index<I>) -> &Self::Bootstrap
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.