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