xsd-parser 1.5.2

Rust code generator for XML schema files
Documentation
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           xmlns:tns="http://example.com"
           targetNamespace="http://example.com"
           elementFormDefault="qualified">
    <xs:simpleType name="FooType">
        <xs:list itemType="xs:string"/>
    </xs:simpleType>

    <xs:element name="Foo" type="tns:FooType"/>
</xs:schema>