(&mut self, s: &str)
| 589 | impl StringWriter for GenericStringWriter<'_> { |
| 590 | #[inline(always)] |
| 591 | fn write_str(&mut self, s: &str) { |
| 592 | push_bytes_to_mutable_buffer(self.value_buffer, s.as_bytes()); |
| 593 | } |
| 594 | |
| 595 | #[inline(always)] |
| 596 | fn write_char(&mut self, c: char) { |