mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Make connect trait public
This commit is contained in:
parent
69f150e3f6
commit
e0774cbd5d
3 changed files with 16 additions and 7 deletions
|
@ -55,6 +55,15 @@ impl ClientBuilder {
|
|||
self
|
||||
}
|
||||
|
||||
/// Use custom connection. Mainly used for mocking connections.
|
||||
/// # Note
|
||||
/// This overrides anything set with [`Self::connector`].
|
||||
pub fn connection(mut self, connection: impl super::connect::Connect + 'static) -> Self
|
||||
{
|
||||
self.config.connector = Box::new(connection);
|
||||
self
|
||||
}
|
||||
|
||||
/// Set request timeout.
|
||||
///
|
||||
/// Request timeout is the total time before a response must be received.
|
||||
|
|
|
@ -20,7 +20,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
pub(super) trait Connect: fmt::Debug {
|
||||
pub trait Connect: fmt::Debug {
|
||||
fn send_request(
|
||||
&self,
|
||||
head: RequestHeadType,
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
use std::rc::Rc;
|
||||
|
||||
mod builder;
|
||||
mod connect;
|
||||
pub mod connect;
|
||||
mod connection;
|
||||
mod connector;
|
||||
pub mod error;
|
||||
|
@ -74,12 +74,12 @@ pub struct Connect {
|
|||
pub struct Client(Rc<ClientConfig>);
|
||||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct ClientConfig {
|
||||
pub struct ClientConfig {
|
||||
pub(self) connector: Box<dyn HttpConnect>,
|
||||
pub(self) headers: HeaderMap,
|
||||
pub(self) timeout: Millis,
|
||||
pub(self) response_pl_limit: usize,
|
||||
pub(self) response_pl_timeout: Millis,
|
||||
pub headers: HeaderMap,
|
||||
pub timeout: Millis,
|
||||
pub response_pl_limit: usize,
|
||||
pub response_pl_timeout: Millis,
|
||||
}
|
||||
|
||||
impl Default for ClientConfig {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue