(&self)
| 250 | /// Errata notes, if any. |
| 251 | #[must_use] |
| 252 | pub const fn errata(&self) -> Option<&'db str> { |
| 253 | // SAFETY: null indicates absence; otherwise same validity as `name`. |
| 254 | unsafe { as_opt_str(self.event.errata) } |
| 255 | } |
| 256 | |
| 257 | /// Human-readable alias, e.g. `"Instructions"`, `"Cycles"`. |
| 258 | #[must_use] |
nothing calls this directly
no test coverage detected