1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-24 22:37:35 +02:00

ClientRequest::json() accepts reference instead of object

This commit is contained in:
Nikolay Kim
2019-04-01 17:53:30 -07:00
parent 89a0a50e14
commit 2d43489278
2 changed files with 3 additions and 1 deletions

View File

@ -499,7 +499,7 @@ impl ClientRequest {
/// Set a JSON body and generate `ClientRequest`
pub fn send_json<T: Serialize>(
&mut self,
value: T,
value: &T,
) -> impl Future<
Item = ClientResponse<impl Stream<Item = Bytes, Error = PayloadError>>,
Error = SendRequestError,