jam_types/inner_result_code.rs
/// The result code returned by inner PVM invocations.
#[repr(u32)]
pub enum InnerResultCode {
/// `HALT` Completed normally.
Halt = 0,
/// `PANIC` Completed with a panic.
Panic = 1,
/// `FAULT` Completed with a page fault.
PageFault = 2,
/// `HOST` Completed with a host-call fault.
HostCallFault = 3,
/// `OOG` Completed by running out of gas.
OutOfGas = 4,
}