Trait IntoServiceBuilder

Source
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.

Required Associated Types§

Required Methods§

Source

fn into_service_builder( self, ) -> ServiceBuilder<Self::Service, Self::Deliver, Self::With, Self::Also, Self::Configure>

Implementors§