Function grpc_serve_unix

Source
pub async fn grpc_serve_unix<S, K>(
    context: &mut ServiceContext,
    socket: K,
    svc: S,
    timeout: u64,
)
where S: Service<Request<Body>, Response = Response<BoxBody>, Error = Infallible> + NamedService + Clone + Send + 'static, S::Future: Send + 'static, K: AsRef<Path>,