also, if you have a `Copy + Clone` trait bound on ...
# development
a
also, if you have a
Copy + Clone
trait bound on some type parameter, and call
.clone()
(use case is a
Vec<_>
of `Copy`able things), does that always call
.copy()
, or is
.clone()
magically more wasteful somehow?