pub fn parse_packageinfo(input: &[u8]) -> Result<Vdf<'_>>Expand description
Parse a packageinfo.vdf format binary file.
This function returns zero-copy data where possible - strings are borrowed
from the input buffer. Use .into_owned() to convert to an owned Vdf<'static>.
Uses default ParseOptions (invalid UTF-8 handled lossily). Use
parse_packageinfo_with to control this.