Trait stress_test::actor::Actor
source · pub trait Actor: Sync + Send + 'static {
// Required method
fn perform<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<(), ActorError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}