(&mut self)
| 434 | } |
| 435 | |
| 436 | fn write_field_stop(&mut self) -> crate::Result<()> { |
| 437 | self.write_byte(field_type_to_u8(TType::Stop)) |
| 438 | } |
| 439 | |
| 440 | fn write_bytes(&mut self, b: &[u8]) -> crate::Result<()> { |
| 441 | self.write_i32(b.len() as i32)?; |
nothing calls this directly
no test coverage detected