pub trait IntoServiceBuilder<M> {
type Service;
type Deliver;
type With;
type Also;
type Configure;
// Required method
fn into_service_builder(
self,
) -> ServiceBuilder<Self::Service, Self::Deliver, Self::With, Self::Also, Self::Configure>;
}
Expand description
This trait allows service systems to be converted into a builder that can be used to customize how the service is configured.