(&mut self, value: i16)
| 51 | } |
| 52 | |
| 53 | pub fn add_int16(&mut self, value: i16) -> &mut Self { |
| 54 | self.write_be_bytes(&value.to_be_bytes()); |
| 55 | self |
| 56 | } |
| 57 | |
| 58 | pub fn add_cstring(&mut self, value: &str) -> &mut Self { |
| 59 | if !value.is_empty() { |
nothing calls this directly
no test coverage detected