pub trait IntoService<T>where
T: Service,{
// Required method
fn into_service(self) -> T;
}Expand description
Trait for types that can be converted to a Service
Required Methods§
Sourcefn into_service(self) -> T
fn into_service(self) -> T
Convert to a Service