Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 523 Bytes

File metadata and controls

21 lines (15 loc) · 523 Bytes

Rust XML Coding Challenge

Rust Coding Challenge to parse a CPL XML file

Goal

  • create a branch for your solution

  • parse a CompositionPlayList XML

  • fill the provided function so that the unittest run through

  • nice additions:

    • add error handling (e.g. file cannot be opened)
    • parse whole CPL and dump reels
    • add a is_hdr function

Tips

  • run unittest: cargo test
  • lookup https://crates.io to search for xml parsers
  • options may be libxml, xml-rs, quick-xml
  • deserialization may be an option