pub trait InstructionFileParser: Send + Sync {
// Required method
fn parse(&self, content: &str) -> Result<ParsedInstructions>;
}Expand description
Trait for parsing instruction files
Required Methods§
Sourcefn parse(&self, content: &str) -> Result<ParsedInstructions>
fn parse(&self, content: &str) -> Result<ParsedInstructions>
Parse file content into sections