threefoldtech/mycelium

Remove derive(Clone) on principal structs in the stack

LeeSmet opened this issue · 0 comments

The introduction of the metrics means that most structs now have a where M: Clone bound, which is really annoying. The better way to do this is to manually impl Clone where M: Clone. This also allows some bounds on impl blocks to be removed.