Reply

Type Alias Reply 

Source
pub type Reply<T> = Box<dyn Future<Item = Res<T>, Error = Never> + Send + 'static>;
Expand description

An alias of the typical Future that can be used as the result of HandleRequest::handle_request method.

Aliased Typeยง

pub struct Reply<T>(/* private fields */);