I'd like to be able to derive Copy. For example:
#[derive(Clone, Copy)]
struct Foo {
ring: ArrayDeque<u16, 16>
}
Did I overlook an easy way to do this? If not, is this possible with the current design? If so, would you be open to a PR adding this functionality?
Thanks for making this library!