pub trait Runner<Context>where
Context: Async + HasErrorType,{
// Required method
fn run(
context: &Context,
) -> impl Future<Output = Result<(), Context::Error>> + Send;
}Required Methods§
Object Safety§
This trait is not object safe.