[−][src]Trait meio::InteractionHandler
Type of Handler to process interaction in request-response style.
Required methods
#[must_use]fn handle<'life0, 'async_trait>(
&'life0 mut self,
input: I
) -> Pin<Box<dyn Future<Output = Result<I::Output, Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
&'life0 mut self,
input: I
) -> Pin<Box<dyn Future<Output = Result<I::Output, Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Asyncronous method that receives incoming message and return a response.