diff --git a/src/server/conn.rs b/src/server/conn.rs index f6b9103e..bbc876e5 100644 --- a/src/server/conn.rs +++ b/src/server/conn.rs @@ -105,8 +105,11 @@ pub struct Connecting { #[pin_project] #[derive(Debug)] pub(super) struct SpawnAll { + // TODO: re-add `pub(super)` once rustdoc can handle this. + // + // See https://github.com/rust-lang/rust/issues/64705 #[pin] - pub(super) serve: Serve, + pub serve: Serve, } /// A future binding a connection with a Service.