(&self)
| 264 | /// Fallback event name for fixed counters. |
| 265 | #[must_use] |
| 266 | pub const fn fallback(&self) -> Option<&'db str> { |
| 267 | // SAFETY: null indicates absence; otherwise same validity as `name`. |
| 268 | unsafe { as_opt_str(self.event.fallback) } |
| 269 | } |
| 270 | |
| 271 | /// Whether this event is bound to a fixed counter register. |
| 272 | /// |