(&mut self, other: &str)
| 465 | /// Append a UTF-8 slice at the end of the string. |
| 466 | #[inline] |
| 467 | pub fn push_str(&mut self, other: &str) { |
| 468 | self.bytes.extend_from_slice(other.as_bytes()) |
| 469 | } |
| 470 | |
| 471 | /// Append a WTF-8 slice at the end of the string. |
| 472 | #[inline] |
no test coverage detected