pub trait ServiceOperator<I>: Service<I> {
// Provided method
fn into_async_operator(self) -> ServiceOp<Self>
where Self: Sized { ... }
}
Expand description
A trait that converts a Service
into an AsyncOperator
Provided Methods§
Sourcefn into_async_operator(self) -> ServiceOp<Self>where
Self: Sized,
fn into_async_operator(self) -> ServiceOp<Self>where
Self: Sized,
Convert into an AsyncOperator
.