Expand description
Simple Cursor on Target (CoT) (de)serialization library.
Provides struct definitions and utilities which use quick_xml to handle conversion to/from XML text.
The CoT base schema is represented by the base::Cot struct. You can either provide your own type for the detail section of the CoT message, or you can use detail::parse() to skip parsing the section and instead get raw XML text. What we really want is a dynamic type, analogous to serde_json::Value, but I haven’t found anything similar for XML.