Reputation: 1225
In the Rust documentation, I see implementations like this one, from Option:
impl<T> Copy for Option<T> where T: Copy + Copy
What does the Copy + Copy bound mean? Is it just a documentation quirk?
Copy + Copy
Upvotes: 2
Views: 91
Reputation: 430514
Yes, this is a known and fixed issue in rustdoc.
Upvotes: 3