From 7f9913db42ce916796c6ec7fb657ec3f04c2d85b Mon Sep 17 00:00:00 2001 From: amit Date: Fri, 17 May 2024 18:52:26 +0530 Subject: [PATCH] fix: update doc --- src/core/http/response.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/http/response.rs b/src/core/http/response.rs index b468d5d536..b3d2083325 100644 --- a/src/core/http/response.rs +++ b/src/core/http/response.rs @@ -20,7 +20,8 @@ pub struct Response { // Trait to convert a serde_json_borrow::Value to a ConstValue. // serde_json_borrow::Value is a borrowed version of serde_json::Value. // It has a limited lifetime tied to the input JSON, making it more -// efficient. +// efficient. Benchmarking is required to determine the performance If any +// change is made. pub trait FromValue { fn from_value(value: serde_json_borrow::Value) -> Self;