pub trait TestBuilderImplementation<TYPES: NodeType>{
type Config: Default;
// Required method
fn start<'async_trait>(
num_storage_nodes: usize,
url: Url,
options: Self::Config,
changes: HashMap<u64, BuilderChange>,
) -> Pin<Box<dyn Future<Output = Box<dyn BuilderTask<TYPES>>> + Send + 'async_trait>>
where Self: 'async_trait;
}Required Associated Types§
Required Methods§
fn start<'async_trait>(
num_storage_nodes: usize,
url: Url,
options: Self::Config,
changes: HashMap<u64, BuilderChange>,
) -> Pin<Box<dyn Future<Output = Box<dyn BuilderTask<TYPES>>> + Send + 'async_trait>>where
Self: 'async_trait,
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.