Clone is required in a bound by Copy, however Clone is marked as uncovered #193
Labels
C-question
Category: A question
C-upstream-bug
Category: This is a bug of compiler or dependencies (the fix may require action in the upstream)
As per the title, if you
#[derive(Copy)]
you must also#[derive(Clone)]
.However
Clone
will be marked as uncovered in the#[derive(Clone, Copy)]
statement.The text was updated successfully, but these errors were encountered: