Hide more

This commit is contained in:
James Bell 2024-09-18 15:17:20 +00:00
parent a1857806de
commit c128e9a9f3
3 changed files with 4 additions and 1 deletions

View file

@ -57,7 +57,8 @@ impl ClientBuilder {
/// Use custom connection. Mainly used for mocking connections. /// Use custom connection. Mainly used for mocking connections.
/// # Note /// # Note
/// This overrides anything set with [`Self::connector`]. /// This overrides anything set with [`Self::connector`].
#[doc(hidden)]
pub fn connection( pub fn connection(
mut self, mut self,
connection: impl super::connect::Connect + 'static, connection: impl super::connect::Connect + 'static,

View file

@ -74,6 +74,7 @@ pub struct Connect {
pub struct Client(Rc<ClientConfig>); pub struct Client(Rc<ClientConfig>);
#[derive(Debug)] #[derive(Debug)]
#[doc(hidden)]
pub struct ClientConfig { pub struct ClientConfig {
pub(self) connector: Box<dyn HttpConnect>, pub(self) connector: Box<dyn HttpConnect>,
pub headers: HeaderMap, pub headers: HeaderMap,

View file

@ -59,6 +59,7 @@ impl HttpMessage for ClientResponse {
impl ClientResponse { impl ClientResponse {
/// Create new client response instance /// Create new client response instance
#[doc(hidden)]
pub fn new(head: ResponseHead, payload: Payload, config: Rc<ClientConfig>) -> Self { pub fn new(head: ResponseHead, payload: Payload, config: Rc<ClientConfig>) -> Self {
ClientResponse { ClientResponse {
head, head,