pub trait AsyncMediatorInternalHandle<Ev: Debug> {
fn send<'life0, 'async_trait, Req>(
&'life0 self,
req: Req
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where
Req: Send,
Self: AsyncRequestHandler<Req, Ev>,
Req: 'async_trait,
'life0: 'async_trait,
Self: 'async_trait;
}Available on crate feature
async only.Expand description
Send a request Req asynchronously for processing to the mediator.
This will call the handler.