Ingvar Stepanyan
Ingvar Stepanyan
@oli-obk Yeah, that's another issue I've got hit with, but downgraded my code to be compatible with 0.8 for now, and then found out that enums don't work.
@oli-obk So, as said in another thread, implemented this in [serde-xml-rs](https://crates.io/crates/serde-xml-rs) as it was easier than to migrate existing code to Serde 0.9 and then add missing features. Please let...
@marcusball You likely need `#[serde(default)]`on your collections so that, when tag are not found, it can generate an empty collection instead. At least with that attribute your example parses well...
One more thing that I'd like to see - which was actually initial motivation - is instrumentation of public API functions too, so that I could just do ops like...
> I am not yet very familiar with the instrumentation part of tracing (sadly), if you could do this that would be very nice 🙏 Cool. I'm actually a bit...
https://github.com/tokio-rs/tracing/issues/372#issuecomment-1631731178 brings an interesting point: `tracing` crate translates `log` events just fine, so to support dynamic levels and targets it might be easier to keep `log` for log messages, but...
Yeah it does, as well as it has an internal function for overriding the encoding specifically. All I'm saying is that it's worth testing and adding whatever's necessary to make...
If you have camera at hand and it allows settings some strings (e.g. Canon allows to set copyright author name via Digital Photo Professional), it would be good to set...
> I added [an example](https://github.com/maxicarlos08/gphoto2-rs/blob/master/examples/locales.rs?rgh-link-date=2022-10-01T20%3A07%3A54Z) to test this, unfortunately my camera (a Nikon D3400) does not seem to have any text that I can freely set. It should have the...
Actually, one other thing you could do is just create a file with unicode chars via file manager when camera is connected, and then checking how it's reported via `CameraFS`?