pub trait AsyncResponder: Send + 'static + Sealed {
    type Output: Responder;

    fn poll_respond_to(&mut self, input: &mut Input<'_>) -> Poll<Output, Error>;
}
Expand description

The async variant of Responder.

Required Associated Types

The inner type of this responder.

Required Methods

Polls for a result of inner Responder.

Implementors