arcnmx / ddc-hi-rs

DDC/CI high level crate
MIT License
23 stars 8 forks source link

Derive Copy and Clone for Query #6

Closed ThalusA closed 2 years ago

ThalusA commented 2 years ago

Hey is this possible to derive Copy and Clone for this Query enum ? https://github.com/arcnmx/ddc-hi-rs/blob/master/src/lib.rs#L306

arcnmx commented 2 years ago

Yeah that type shouldn't be missing derives, but it can't be Copy due to String and Box, just Clone

ThalusA commented 2 years ago

Thanks a lot :D