pub fn parse_tagfile(content: &str) -> Result<Vec<TagSection>, ParserError>Expand description
Parses a TagFile: these are files such as Debian control and Packages
files.
ยงReturns
- A
Result: TheOkvariant containing the vector ofTagSectionobjects if there was no issue parsing the file, and theErrvariant if there was.