(&self)
| 459 | /// Returns the number of bytes that this string buffer can hold without reallocating. |
| 460 | #[inline] |
| 461 | pub const fn capacity(&self) -> usize { |
| 462 | self.bytes.capacity() |
| 463 | } |
| 464 | |
| 465 | /// Append a UTF-8 slice at the end of the string. |
| 466 | #[inline] |
no outgoing calls
no test coverage detected