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
I want to encode individual items to xml. I'm subscribing to an RSS feed and will do a bunch of data processing on each item. I need to store the input for followup and possible reprocessing.
I could do that by pulling everything out to a struct of my own and use serde, however as from_xml is already public on individual items it feels natural that the libray would allow me to du the mirror operation on individual items as well.
Would it be possible to either make the toxml module public or add a
pub use crate::toxml::ToXml
to lib.rs?The text was updated successfully, but these errors were encountered: