| 192 | /// This is a wrapper over a raw pointer to bytecode somewhere in memory. |
| 193 | #[derive(Clone, Copy, Debug)] |
| 194 | pub struct UnsafeBytecodeStream(NonNull<u8>); |
| 195 | |
| 196 | impl UnsafeBytecodeStream { |
| 197 | /// Construct a new `UnsafeBytecodeStream` pointing at the given PC. |