mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Add ByteString::clear() method
This commit is contained in:
parent
073ea6db29
commit
55c837a5f8
4 changed files with 23 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.1.16] (2022-07-07)
|
||||
|
||||
* Add ByteString::clear() method
|
||||
|
||||
## [0.1.15] (2022-06-20)
|
||||
|
||||
* Add Buf/BufMut impls
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-bytes"
|
||||
version = "0.1.15"
|
||||
version = "0.1.16"
|
||||
license = "MIT"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Carl Lerche <me@carllerche.com>"]
|
||||
description = "Types and traits for working with bytes (bytes crate fork)"
|
||||
|
|
|
@ -140,6 +140,23 @@ impl ByteString {
|
|||
self.0.trimdown()
|
||||
}
|
||||
|
||||
/// Clears the buffer, removing all data.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// ```
|
||||
/// use ntex_bytes::ByteString;
|
||||
///
|
||||
/// let mut a = ByteString::from("hello world");
|
||||
/// a.clear();
|
||||
///
|
||||
/// assert!(a.is_empty());
|
||||
/// ```
|
||||
#[inline]
|
||||
pub fn clear(&mut self) {
|
||||
self.0.clear()
|
||||
}
|
||||
|
||||
/// Creates a new `ByteString` from a Bytes.
|
||||
///
|
||||
/// # Safety
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue