You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, there are two main ways to use this library:
a rather low-level one, using a Reader
a very high-level one, with serde
I would like to have an in-between option, one that still has a pull-based interface, but that would still do a lot of the low-level stuff by itself - like gluing together and trimming Texts, for example.
From what I understand, such an interface already exists internally - I mean the de::XmlReader::next() function, which satisfies all of the above. However, it is not currently exposed publicly, even though the DeEvents themselves are.
The text was updated successfully, but these errors were encountered:
Right now, there are two main ways to use this library:
Reader
serde
I would like to have an in-between option, one that still has a pull-based interface, but that would still do a lot of the low-level stuff by itself - like gluing together and trimming
Text
s, for example.From what I understand, such an interface already exists internally - I mean the
de::XmlReader::next()
function, which satisfies all of the above. However, it is not currently exposed publicly, even though theDeEvent
s themselves are.The text was updated successfully, but these errors were encountered: