pub trait Executable { // Required method fn execute( &self, writer: &mut Writer, reader: &mut Reader, ) -> Result<i32, Error>; }