Encode the value at index `idx` to `out`.
(&mut self, idx: usize, out: &mut Vec<u8>)
| 268 | |
| 269 | /// Encode the value at index `idx` to `out`. |
| 270 | pub fn encode(&mut self, idx: usize, out: &mut Vec<u8>) { |
| 271 | self.encoder.encode(idx, out) |
| 272 | } |
| 273 | |
| 274 | /// Returns whether the value at index `idx` is null. |
| 275 | pub fn is_null(&self, idx: usize) -> bool { |
nothing calls this directly
no test coverage detected