Type Definition multilink::ServiceFuture

source ·
pub type ServiceFuture<Response> = Pin<Box<dyn Future<Output = Result<Response, ServiceError>> + Send>>;
Expand description

A future that returns a result with a generic response and ServiceError. This is returned by service calls.