Move basic http types to separeate crate

This commit is contained in:
Nikolay Kim 2022-06-13 22:04:16 +06:00
parent 49520c0c55
commit d7261e2dd7
16 changed files with 141 additions and 49 deletions

View file

@ -14,6 +14,12 @@ impl ByteString {
ByteString(Bytes::new())
}
/// Get a str slice.
#[inline]
pub fn as_str(&self) -> &str {
&*self
}
/// Get a reference to the underlying bytes.
#[inline]
pub fn as_slice(&self) -> &[u8] {