mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Fmt
This commit is contained in:
parent
bc081d9d7e
commit
a1857806de
2 changed files with 5 additions and 7 deletions
|
@ -58,8 +58,10 @@ impl ClientBuilder {
|
|||
/// 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
|
||||
{
|
||||
pub fn connection(
|
||||
mut self,
|
||||
connection: impl super::connect::Connect + 'static,
|
||||
) -> Self {
|
||||
self.config.connector = Box::new(connection);
|
||||
self
|
||||
}
|
||||
|
|
|
@ -59,11 +59,7 @@ impl HttpMessage for ClientResponse {
|
|||
|
||||
impl ClientResponse {
|
||||
/// Create new client response instance
|
||||
pub fn new(
|
||||
head: ResponseHead,
|
||||
payload: Payload,
|
||||
config: Rc<ClientConfig>,
|
||||
) -> Self {
|
||||
pub fn new(head: ResponseHead, payload: Payload, config: Rc<ClientConfig>) -> Self {
|
||||
ClientResponse {
|
||||
head,
|
||||
payload,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue