Lokathor/bytemuck

Does `NoUninit` have to require `Copy`?

Nugine opened this issue · 1 comments

Does `NoUninit` have to require `Copy`?

It's possible to not strictly require it, but during the design discussion we decided to go that direction anyway. Most of the bytemuck functions should usually only be used with Copy types, so we decided to just require Copy. Particularly since, in version 1, the Pod trait already existed first, so most types used with this crate were already Copy bound.