mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27: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.
|
/// 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,
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue