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§

source

fn into_async_operator(self) -> ServiceOp<Self>where Self: Sized,

Convert into an AsyncOperator.

Implementors§

source§

impl<T, I> ServiceOperator<I> for Twhere T: Service<I>,