pub trait IntoWorkerService<B, Svc, Args, Ctx>{
type Backend;
// Required method
fn into_service(self, backend: B) -> WorkerService<Self::Backend, Svc>;
}Expand description
Trait for building a worker service provided a backend
Required Associated Types§
Required Methods§
Sourcefn into_service(self, backend: B) -> WorkerService<Self::Backend, Svc>
fn into_service(self, backend: B) -> WorkerService<Self::Backend, Svc>
Build the service from the backend