SyncMediatorInternalHandle

Trait SyncMediatorInternalHandle 

Source
pub trait SyncMediatorInternalHandle<Ev: Debug> {
    // Required method
    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§

Source

fn send<Req>(&self, req: Req)
where Self: RequestHandler<Req, Ev>,

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.

Implementors§