Trait tsukuyomi::output::AsyncResponder [−][src]
pub trait AsyncResponder: Send + 'static + Sealed { type Output: Responder; fn poll_respond_to(&mut self, input: &mut Input) -> Poll<Output, Error>; }
The async variant of Responder
.
Associated Types
Required Methods
fn poll_respond_to(&mut self, input: &mut Input) -> Poll<Output, Error>
Polls for a result of inner Responder
.