(&mut self, max: u64)
| 144 | } |
| 145 | } |
| 146 | fn string_vec(&mut self, max: u64) -> Vec<String> { |
| 147 | (0..self.below(max + 1)).map(|_| self.string()).collect() |
| 148 | } |
| 149 | /// Small `serde_json::Value` whose re-serialization is order-stable |
| 150 | /// (object keys are fixed and few). |
| 151 | fn json_value(&mut self, depth: u8) -> serde_json::Value { |
no test coverage detected