Add Bytes<&Bytes> for Bytes impl

This commit is contained in:
Nikolay Kim 2022-12-13 11:06:25 +01:00
parent 0217a2e835
commit 959d821edd
5 changed files with 16 additions and 18 deletions

View file

@ -1,5 +1,11 @@
# Changes
## [0.1.18] (2022-12-13)
* Add Bytes<&Bytes> for Bytes impl
* Remove ByteString::TryFrom<&BytesMut> impl
## [0.1.17] (2022-12-09)
* Add TryFrom<&Bytes> and TryFrom<&BytesMut> for ByteString

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-bytes"
version = "0.1.17"
version = "0.1.18"
license = "MIT"
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Carl Lerche <me@carllerche.com>"]
description = "Types and traits for working with bytes (bytes crate fork)"

View file

@ -899,6 +899,12 @@ impl Deref for Bytes {
}
}
impl From<&Bytes> for Bytes {
fn from(src: &Bytes) -> Bytes {
src.clone()
}
}
impl From<BytesMut> for Bytes {
fn from(src: BytesMut) -> Bytes {
src.freeze()
@ -4045,8 +4051,7 @@ mod tests {
use super::*;
const LONG: &[u8] =
b"mary had a little lamb, little lamb, little lamb, little lamb, little lamb, little lamb \
const LONG: &[u8] = b"mary had a little lamb, little lamb, little lamb, little lamb, little lamb, little lamb \
mary had a little lamb, little lamb, little lamb, little lamb, little lamb, little lamb \
mary had a little lamb, little lamb, little lamb, little lamb, little lamb, little lamb";

View file

@ -303,19 +303,6 @@ impl TryFrom<BytesMut> for ByteString {
}
}
impl<'a> TryFrom<&'a BytesMut> for ByteString {
type Error = ();
#[inline]
fn try_from(value: &'a BytesMut) -> Result<Self, Self::Error> {
if utf8::is_valid(value) {
Ok(ByteString(value.clone().freeze()))
} else {
Err(())
}
}
}
impl TryFrom<BytesVec> for ByteString {
type Error = ();

View file

@ -54,8 +54,8 @@ ntex-http = "0.1.9"
ntex-router = "0.5.1"
ntex-service = "0.3.2"
ntex-macros = "0.1.3"
ntex-util = "0.1.18"
ntex-bytes = "0.1.17"
ntex-util = "0.1.19"
ntex-bytes = "0.1.18"
ntex-h2 = "0.1.6"
ntex-rt = "0.4.6"
ntex-io = "0.1.11"