Mingun

Results 397 comments of Mingun

Anyway, your should also add a point to the `Changelog.md` under **New Features** section.

Feel free to submit a PR. Actually, the #590 seems a duplicate of this bug, so you can start from my findings there.

Unlikely. `StartTrimmer.trim_start` updated here: https://github.com/tafia/quick-xml/blob/84b07b4e5c9a201b3d3d7fa95c1e8c33ecbe6dd2/src/de/mod.rs#L2900 All whitespaces need to persist until we will sure that we can trim them. Motivation in #520

Yes, the reason is because XML is a text-based format which could use many encodings. You should manually encode the string result to bytes for now. If you want an...

You want to mix serde serializer with event-based Writer API? Could you describe your case better? Also, I suppose you use master, right?

> with something like this > > ```rust > writer > .create_element("foo") > .write_serialized_content(Bar { baz: 42 })?; > ``` > > would be the ideal implementation for my use-case....

> I would think that's true for JSON as well. Yes, and I think this is oversight in the serde_json. It writes UTF-8 only, which is a task for `fmt::Write`....

> Is there an issue on serde_json about this? I don't known. While @dtolnay can be great in other projects, serde project is not in him focus nowadays and it...

> Forcing near 100% of callers to use a fmt/io adapter would be a worse API regardless of the adapter being zero cost. That adapter could represent essential entity of...

This is because you need to name attributes in your structs [starting with a `@` character](https://docs.rs/quick-xml/latest/quick_xml/de/index.html#mapping-xml-to-rust-types). The code under provided link is probably already was changed, because I do not...