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