This commit is contained in:
James Bell 2024-09-18 15:11:49 +00:00
parent bc081d9d7e
commit a1857806de
2 changed files with 5 additions and 7 deletions

View file

@ -58,8 +58,10 @@ 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`].
pub fn connection(mut self, connection: impl super::connect::Connect + 'static) -> Self pub fn connection(
{ mut self,
connection: impl super::connect::Connect + 'static,
) -> Self {
self.config.connector = Box::new(connection); self.config.connector = Box::new(connection);
self self
} }

View file

@ -59,11 +59,7 @@ impl HttpMessage for ClientResponse {
impl ClientResponse { impl ClientResponse {
/// Create new client response instance /// Create new client response instance
pub fn new( pub fn new(head: ResponseHead, payload: Payload, config: Rc<ClientConfig>) -> Self {
head: ResponseHead,
payload: Payload,
config: Rc<ClientConfig>,
) -> Self {
ClientResponse { ClientResponse {
head, head,
payload, payload,