pub type ServiceFuture<'a, T> = Pin<Box<dyn Future<Output = Result<T, SaddleError>> + Send + 'a>>;Expand description
The boxed asynchronous boundary used by V1 Service implementations.
Aliased Typeยง
pub struct ServiceFuture<'a, T> { /* private fields */ }