media-io / yaserde

Yet Another Serializer/Deserializer
MIT License
174 stars 58 forks source link

why not support struct with generic?? quick_xml can do it!!! #188

Closed xfront closed 2 months ago

xfront commented 2 months ago

[derive(Serialize, YaSerialize, Debug)]

struct Envelop<T> {
    body: T,
}
struct Envelop { ^^^^^^^ - help: add missing generic argument
147 struct Envelop {
+++