willox / auxtools

Rust library for low-level interfacing with BYOND's virtual machine. Includes a remote debugger for the BYOND DreamMaker language.
MIT License
28 stars 32 forks source link

Derives Copy and Clone for WeakValue #51

Closed Y0SH1M4S73R closed 2 years ago

Y0SH1M4S73R commented 2 years ago

Since raw_types::values::Value implements Copy and Clone, and f32 is a primitive which inherently derives those traits, I see no reason as to why WeakValue shouldn't derive them too. This makes working with them significantly easier.