We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Links to #57
Rust provides some tools to parse XML but first entire schema needs to be translated to Rust structs. Tools used to achieve this:
yaserde
Structs generated with xml-schema are far from being complete so I need to do some manual work here:
xml-schema
xs:complexType
Period
PeriodWithStartDate
PeriodWithoutFlags
xs:pattern
xs:enumeration
xs:choice
Some validations/fields parsing that are irrelevant for our purposes (but essential in proving xml validity) may be skipped for PoC.
The text was updated successfully, but these errors were encountered:
denciu
No branches or pull requests
Links to #57
Rust provides some tools to parse XML but first entire schema needs to be translated to Rust structs. Tools used to achieve this:
yaserde
Structs generated with
xml-schema
are far from being complete so I need to do some manual work here:xs:complexType
s that are extended are generated incorrectlyPeriod
,PeriodWithStartDate
,PeriodWithoutFlags
xs:pattern
- validation with regexxs:enumeration
- validation with set of itemsxs:choice
Some validations/fields parsing that are irrelevant for our purposes (but essential in proving xml validity) may be skipped for PoC.
The text was updated successfully, but these errors were encountered: