pub trait DriverBuilder<Context>where
Context: HasTestDriverType + HasErrorType,{
// Required method
fn build_driver(
context: &Context,
) -> impl Future<Output = Result<Context::TestDriver, Context::Error>> + Send;
}
Required Methods§
fn build_driver( context: &Context, ) -> impl Future<Output = Result<Context::TestDriver, Context::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.