Type Definition llmvm_protocol::ServiceFuture
source · pub type ServiceFuture<Response> = Pin<Box<dyn Future<Output = Result<Response, Box<dyn Error + Sync + Send, Global>>> + Send, Global>>;
Expand description
A future that returns a result with a generic response and ServiceError
.
This is returned by service calls.