(&mut self, node: Node)
| 326 | } |
| 327 | |
| 328 | pub fn begin_node(&mut self, node: Node) -> io::Result<()> { |
| 329 | write_comma_io(&mut self.zip, &mut self.node_comma)?; |
| 330 | write!(self, "{node}") |
| 331 | } |
| 332 | |
| 333 | pub fn end_obj(&mut self) -> io::Result<()> { |
| 334 | self.write_all(b"}") |
no test coverage detected