1 2 3 4 5 6
pub trait IParseStr { type output; fn parse( file_content: &str ) -> Result< Self::output, & 'static str >; }