RustのHyperで「make_service_fn内のクロージャはコネクションごとに実行される」と書いてある場所
https://gyazo.com/dcc3072ef1867e65a690ff10557f5b90
// The closure inside make_service_fn is run for each connection,
// creating a 'service' to handle requests for that specific connection.
ドキュメントの方にはhyper::service::make_service_fnの説明が以下のようにしか書いてなくて少し不親切なのでこのページを書いた。
Create a MakeService from a function.