(&mut self, s: &str)
| 471 | } |
| 472 | |
| 473 | fn write_string(&mut self, s: &str) -> crate::Result<()> { |
| 474 | self.write_bytes(s.as_bytes()) |
| 475 | } |
| 476 | |
| 477 | fn write_uuid(&mut self, uuid: &uuid::Uuid) -> crate::Result<()> { |
| 478 | self.transport |
no test coverage detected