instant-labs / instant-xml

11 stars 3 forks source link

Add support for `Vec<T>` #29

Closed rsdy closed 1 year ago

rsdy commented 1 year ago

This PR adds support for Vec<T>, and will produce the following XML for a Vec<String>:

<list>
<element>one</element>
<element>two</element>
<element>three</element>
</list>