将特征绑定添加到自身时意味着什么?

What does a trait bound mean when it is added to itself?

在 Rust 文档中,我看到了这样的实现,来自 Option:

impl<T> Copy for Option<T> where T: Copy + Copy

Copy + Copy 界限是什么意思?这只是一个文档怪癖吗?

是的,这是 known and fixed issue in rustdoc