mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Hide more
This commit is contained in:
parent
a1857806de
commit
c128e9a9f3
3 changed files with 4 additions and 1 deletions
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue