(&self)
| 833 | /// Resume location is determined by [`Self::LOCATION_MASK`]. |
| 834 | #[must_use] |
| 835 | pub fn location(&self) -> ResumeLocation { |
| 836 | // SAFETY: The mask should return a value that is in range. |
| 837 | unsafe { ResumeLocation::try_from(self.as_u32() & Self::LOCATION_MASK).unwrap_unchecked() } |
| 838 | } |
| 839 | |
| 840 | /// True if the bit at [`Self::DEPTH1_MASK`] is on. |
| 841 | #[must_use] |