mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Move basic http types to separeate crate
This commit is contained in:
parent
49520c0c55
commit
d7261e2dd7
16 changed files with 141 additions and 49 deletions
|
@ -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] {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue