(&self)
| 634 | /// Returns the raw bits representing the [Kind]. |
| 635 | #[inline(always)] |
| 636 | pub(crate) const fn kind_bits(&self) -> u8 { |
| 637 | (self.0 >> 24 & 0b1_1111) as u8 |
| 638 | } |
| 639 | |
| 640 | /// Returns the [Kind]. |
| 641 | #[inline] |
no outgoing calls
no test coverage detected