Type Alias llmvm_protocol::ServiceFuture

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

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

Aliased Type§

struct ServiceFuture<Response> { /* private fields */ }