Make connect trait public

This commit is contained in:
James Bell 2024-09-17 14:50:50 +00:00
parent 69f150e3f6
commit e0774cbd5d
3 changed files with 16 additions and 7 deletions

View file

@ -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.

View file

@ -20,7 +20,7 @@ where
}
}
pub(super) trait Connect: fmt::Debug {
pub trait Connect: fmt::Debug {
fn send_request(
&self,
head: RequestHeadType,

View file

@ -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 {