diff --git a/ntex/src/http/client/builder.rs b/ntex/src/http/client/builder.rs index a9b39447..ffdb9b84 100644 --- a/ntex/src/http/client/builder.rs +++ b/ntex/src/http/client/builder.rs @@ -57,7 +57,8 @@ impl ClientBuilder { /// Use custom connection. Mainly used for mocking connections. /// # Note - /// This overrides anything set with [`Self::connector`]. + /// This overrides anything set with [`Self::connector`]. + #[doc(hidden)] pub fn connection( mut self, connection: impl super::connect::Connect + 'static, diff --git a/ntex/src/http/client/mod.rs b/ntex/src/http/client/mod.rs index 2c655e4c..cef41c7b 100644 --- a/ntex/src/http/client/mod.rs +++ b/ntex/src/http/client/mod.rs @@ -74,6 +74,7 @@ pub struct Connect { pub struct Client(Rc); #[derive(Debug)] +#[doc(hidden)] pub struct ClientConfig { pub(self) connector: Box, pub headers: HeaderMap, diff --git a/ntex/src/http/client/response.rs b/ntex/src/http/client/response.rs index fbd66a2e..c68b6e73 100644 --- a/ntex/src/http/client/response.rs +++ b/ntex/src/http/client/response.rs @@ -59,6 +59,7 @@ impl HttpMessage for ClientResponse { impl ClientResponse { /// Create new client response instance + #[doc(hidden)] pub fn new(head: ResponseHead, payload: Payload, config: Rc) -> Self { ClientResponse { head,