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,
Object Safety§
This trait is not object safe.