"make_service_fn" - gone. Where is it? #3471
-
Version Platform Description Now it's gone. There's no mention of it in the docs, no in the ChangeLog, nowhere. Where is it? How to convert this into
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
The |
Beta Was this translation helpful? Give feedback.
-
Hey @ally9335 I found this in https://hyper.rs/guides/0.14/server |
Beta Was this translation helpful? Give feedback.
-
FWIW, the upgrading link above does not really discuss this. Perhaps it changed since linked? |
Beta Was this translation helpful? Give feedback.
The
Server
andmake_service_fn
are gone, you should use aloop { let conn = listener.accept().await; ... }
instead. See https://hyper.rs/guides/1/upgrading/