Returns the compilation result for this function, available after any `compile` function has been called.
(&self)
| 94 | /// Returns the compilation result for this function, available after any `compile` function |
| 95 | /// has been called. |
| 96 | pub fn compiled_code(&self) -> Option<&CompiledCode> { |
| 97 | self.compiled_code.as_ref() |
| 98 | } |
| 99 | |
| 100 | /// Returns the compilation result for this function, available after any `compile` function |
| 101 | /// has been called. |
no test coverage detected