Add helper method HeaderValue::as_shared()

This commit is contained in:
Nikolay Kim 2022-12-09 11:10:27 +01:00
parent 6534dc4d1f
commit 7774c58aff
4 changed files with 23 additions and 3 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.1.9] - 2022-12-09
* Add helper method HeaderValue::as_shared()
## [0.1.8] - 2022-11-30
* Convert from HeaderValue into http::header::HeaderValue

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-http"
version = "0.1.8"
version = "0.1.9"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Http types for ntex framework"
keywords = ["network", "framework", "async", "futures"]
@ -20,4 +20,4 @@ http = "0.2"
log = "0.4"
fxhash = "0.2.1"
itoa = "1.0.4"
ntex-bytes = "0.1.15"
ntex-bytes = "0.1.17"

View file

@ -283,6 +283,21 @@ impl HeaderValue {
self.as_ref()
}
/// Converts a `HeaderValue` to a bytes object.
///
/// # Examples
///
/// ```
/// # use ntex_http::header::HeaderValue;
/// # use ntex_bytes::Bytes;
/// let val = HeaderValue::from_static("hello");
/// assert_eq!(val.as_shared(), &Bytes::from_static(b"hello"));
/// ```
#[inline]
pub fn as_shared(&self) -> &Bytes {
&self.inner
}
/// Mark that the header value represents sensitive information.
///
/// # Examples
@ -746,6 +761,7 @@ mod tests {
let hdr = http::header::HeaderValue::from_bytes(b"upgrade").unwrap();
let hdr2 = HeaderValue::from(&hdr);
assert_eq!(hdr2.as_bytes(), b"upgrade");
assert_eq!(hdr2.as_shared(), &Bytes::from_static(b"upgrade"));
let hdr2 = HeaderValue::from(hdr);
assert_eq!(hdr2.as_bytes(), b"upgrade");