logo
pub trait IntoService {
    type Service: Service;
    fn into_service(self) -> Self::Service;
}
Expand description

A convenience trait for handling out of the box conversions into Service instances.

Associated Types

The Service instance this converts to.

Required methods

Convert into a Service instance.

Implementations on Foreign Types

Implementors