(&mut self, s: &str)
| 3388 | |
| 3389 | impl<'a> std::fmt::Write for RowArenaBuf<'a> { |
| 3390 | fn write_str(&mut self, s: &str) -> std::fmt::Result { |
| 3391 | self.buf.extend_from_slice(s.as_bytes()); |
| 3392 | Ok(()) |
| 3393 | } |
| 3394 | } |
| 3395 | |
| 3396 | /// A thread-local row, which can be borrowed and returned. |
no test coverage detected