Returns `true` if the packed option is a `None` value.
(&self)
| 50 | |
| 51 | /// Returns `true` if the packed option is a `None` value. |
| 52 | pub fn is_none(&self) -> bool { |
| 53 | self.0.is_reserved_value() |
| 54 | } |
| 55 | |
| 56 | /// Returns `true` if the packed option is a `Some` value. |
| 57 | pub fn is_some(&self) -> bool { |
no test coverage detected