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

The inner type of this responder.

Required Methods

Polls for a result of inner Responder.

Implementors