mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57:39 +03:00
Add Bytes<&Bytes> for Bytes impl
This commit is contained in:
parent
0217a2e835
commit
959d821edd
5 changed files with 16 additions and 18 deletions
|
@ -1,5 +1,11 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.1.18] (2022-12-13)
|
||||||
|
|
||||||
|
* Add Bytes<&Bytes> for Bytes impl
|
||||||
|
|
||||||
|
* Remove ByteString::TryFrom<&BytesMut> impl
|
||||||
|
|
||||||
## [0.1.17] (2022-12-09)
|
## [0.1.17] (2022-12-09)
|
||||||
|
|
||||||
* Add TryFrom<&Bytes> and TryFrom<&BytesMut> for ByteString
|
* Add TryFrom<&Bytes> and TryFrom<&BytesMut> for ByteString
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-bytes"
|
name = "ntex-bytes"
|
||||||
version = "0.1.17"
|
version = "0.1.18"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Carl Lerche <me@carllerche.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Carl Lerche <me@carllerche.com>"]
|
||||||
description = "Types and traits for working with bytes (bytes crate fork)"
|
description = "Types and traits for working with bytes (bytes crate fork)"
|
||||||
|
|
|
@ -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 {
|
impl From<BytesMut> for Bytes {
|
||||||
fn from(src: BytesMut) -> Bytes {
|
fn from(src: BytesMut) -> Bytes {
|
||||||
src.freeze()
|
src.freeze()
|
||||||
|
@ -4045,8 +4051,7 @@ mod tests {
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
const LONG: &[u8] =
|
const LONG: &[u8] = b"mary had a little lamb, little lamb, little lamb, little lamb, little lamb, little lamb \
|
||||||
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 \
|
||||||
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";
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
impl TryFrom<BytesVec> for ByteString {
|
||||||
type Error = ();
|
type Error = ();
|
||||||
|
|
||||||
|
|
|
@ -54,8 +54,8 @@ ntex-http = "0.1.9"
|
||||||
ntex-router = "0.5.1"
|
ntex-router = "0.5.1"
|
||||||
ntex-service = "0.3.2"
|
ntex-service = "0.3.2"
|
||||||
ntex-macros = "0.1.3"
|
ntex-macros = "0.1.3"
|
||||||
ntex-util = "0.1.18"
|
ntex-util = "0.1.19"
|
||||||
ntex-bytes = "0.1.17"
|
ntex-bytes = "0.1.18"
|
||||||
ntex-h2 = "0.1.6"
|
ntex-h2 = "0.1.6"
|
||||||
ntex-rt = "0.4.6"
|
ntex-rt = "0.4.6"
|
||||||
ntex-io = "0.1.11"
|
ntex-io = "0.1.11"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue