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.
/// # 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,

View file

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

View file

@ -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<ClientConfig>) -> Self {
ClientResponse {
head,