pub trait InstructionLineHandler {
// Required method
fn handle_line(&self, line: &str) -> Result<(), ProcessorError>;
}Required Methods§
fn handle_line(&self, line: &str) -> Result<(), ProcessorError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".