pub trait SyncMediatorInternalHandle<Ev: Debug> {
    fn send<Req>(&self, req: Req)
    where
        Self: RequestHandler<Req, Ev>
; }
Expand description

Send a request Req for processing to the mediator. This will call the handler.

Required Methods

Implementors