1use crate::traits::InsnRead;
2
3pub trait OpcodePrinter {
4 fn print_opcode(
5 &self,
6 f: &mut core::fmt::Formatter,
7 read: &mut dyn InsnRead,
8 ) -> std::io::Result<()>;
9
10 fn handle_option(&mut self, _key: &str, _value: &str) -> bool {
11 false
12 }
13}