(buf: &mut Vec<u8>, key: &str, value: bool)
| 139 | /// Write a key-value pair (string key, bool value). |
| 140 | #[inline] |
| 141 | pub fn write_kv_bool(buf: &mut Vec<u8>, key: &str, value: bool) { |
| 142 | write_str(buf, key); |
| 143 | write_bool(buf, value); |
| 144 | } |
| 145 | |
| 146 | /// Write a key-value pair (string key, raw msgpack value bytes). |
| 147 | /// |
nothing calls this directly
no test coverage detected