Skip to main content

InstructionFileParser

Trait InstructionFileParser 

Source
pub trait InstructionFileParser: Send + Sync {
    // Required method
    fn parse(&self, content: &str) -> Result<ParsedInstructions>;
}
Expand description

Trait for parsing instruction files

Required Methods§

Source

fn parse(&self, content: &str) -> Result<ParsedInstructions>

Parse file content into sections

Implementors§