pub trait VmDiagnostics {
// Required method
fn function_used(&mut self, hash: Hash, at: usize) -> Result<(), VmError>;
}Expand description
A trait for runtime diagnostics in the virtual machine.
pub trait VmDiagnostics {
// Required method
fn function_used(&mut self, hash: Hash, at: usize) -> Result<(), VmError>;
}A trait for runtime diagnostics in the virtual machine.