(buf: &mut Vec<u8>, key: &str)
| 157 | /// Write a key-value pair (string key, null value). |
| 158 | #[inline] |
| 159 | pub fn write_kv_null(buf: &mut Vec<u8>, key: &str) { |
| 160 | write_str(buf, key); |
| 161 | write_null(buf); |
| 162 | } |
| 163 | |
| 164 | /// Inject a string field into a msgpack map without full decode. |
| 165 | /// |
no test coverage detected