use rialo_s_instruction::error::InstructionError;
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum RexProcessorError {
ReportData,
EventData,
Slot,
}
impl From<RexProcessorError> for InstructionError {
fn from(error: RexProcessorError) -> Self {
InstructionError::Custom(error as u32)
}
}