pub trait ExtensionHandlerCaller {
    // Required method
    fn call(&self, msg: BackendMessage) -> Result<BackendMessage>;
}
Expand description

Calls the extension handler with the given message and returns the response.

Required Methods§

source

fn call(&self, msg: BackendMessage) -> Result<BackendMessage>

Call extension handler

Implementors§