mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 22:07:38 +03:00
add Bytes::trimdown() method
This commit is contained in:
parent
0f796c7642
commit
60885478bd
4 changed files with 38 additions and 1 deletions
|
@ -706,6 +706,33 @@ impl Bytes {
|
|||
self.inner.truncate(len);
|
||||
}
|
||||
|
||||
/// Shortens the buffer to `len` bytes and dropping the rest.
|
||||
///
|
||||
/// This is useful if underlying buffer is larger than cuurrent bytes object.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// use ntex_bytes::Bytes;
|
||||
///
|
||||
/// let mut buf = Bytes::from(&b"hello world"[..]);
|
||||
/// buf.trimdown();
|
||||
/// assert_eq!(buf, b"hello world"[..]);
|
||||
/// ```
|
||||
#[inline]
|
||||
pub fn trimdown(&mut self) {
|
||||
let kind = self.inner.kind();
|
||||
|
||||
// trim down only if buffer is not inline or static and
|
||||
// buffer cap is greater than 64 bytes
|
||||
if !(kind == KIND_INLINE || kind == KIND_STATIC)
|
||||
&& (self.inner.capacity() - self.inner.len() >= 64)
|
||||
{
|
||||
let bytes = Bytes::copy_from_slice(self);
|
||||
let _ = mem::replace(self, bytes);
|
||||
}
|
||||
}
|
||||
|
||||
/// Clears the buffer, removing all data.
|
||||
///
|
||||
/// # Examples
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue