(&mut self, additional: NonZeroUsize)
| 79 | } |
| 80 | |
| 81 | fn reserve(&mut self, additional: NonZeroUsize) { |
| 82 | self.variants.reserve(additional); |
| 83 | // We don't know how many are Some, so we can't reserve more. |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | pub struct OptionDecoder<'a, T: Decode<'a>> { |
no outgoing calls
no test coverage detected