(&mut self)
| 335 | } |
| 336 | |
| 337 | pub fn begin_inputs(&mut self) -> io::Result<()> { |
| 338 | self.inputs_comma = false; |
| 339 | self.write_all(br#","inputs":{"#) |
| 340 | } |
| 341 | |
| 342 | pub fn single_field(&mut self, name: &'static str, value: &str) -> io::Result<()> { |
| 343 | write!(self, r#","fields":{{"{name}":[{},null]}}"#, json!(value)) |
no outgoing calls
no test coverage detected