Get a reference to the unwind information from the function's metadata.
(&self)
| 192 | /// Get a reference to the unwind information from the |
| 193 | /// function's metadata. |
| 194 | pub fn unwind_info(&self) -> Option<&UnwindInfo> { |
| 195 | self.metadata.unwind_info.as_ref() |
| 196 | } |
| 197 | |
| 198 | /// Get a reference to the compiled function metadata. |
| 199 | pub fn metadata(&self) -> &CompiledFunctionMetadata { |
no test coverage detected