Trait brane_exe::errors::ReturnEdge
source · pub trait ReturnEdge {
type Ret;
// Required methods
fn to(self, pc: ProgramCounter) -> Result<Self::Ret, VmError>;
fn to_instr(
self,
pc: ProgramCounter,
instr: usize,
) -> Result<Self::Ret, VmError>;
}
Expand description
Trait that makes printing shit a bit easier.