(&mut self)
| 123 | } |
| 124 | } |
| 125 | fn opt_string(&mut self) -> Option<String> { |
| 126 | if self.boolean() { |
| 127 | Some(self.string()) |
| 128 | } else { |
| 129 | None |
| 130 | } |
| 131 | } |
| 132 | fn opt_u64(&mut self) -> Option<u64> { |
| 133 | if self.boolean() { |
| 134 | Some(self.u64_small()) |
no test coverage detected