| 32 | /// program point descriptor. |
| 33 | #[derive(Clone, Copy, Debug)] |
| 34 | pub struct FrameTableDescriptorIndex(pub(crate) u32); |
| 35 | impl FrameTableDescriptorIndex { |
| 36 | fn index(self) -> usize { |
| 37 | usize::try_from(self.0).unwrap() |
no outgoing calls
no test coverage detected