We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 638fa8b commit 8bd3355Copy full SHA for 8bd3355
src/lib.rs
@@ -12,10 +12,6 @@
12
//! [`std::clone::Clone`] trait are automatically usable by a `DynClone` trait
13
//! object.
14
//!
15
-//! [`DynClone`]: trait.DynClone.html
16
-//! [`clone_box`]: fn.clone_box.html
17
-//! [`std::clone::Clone`]: https://doc.rust-lang.org/std/clone/trait.Clone.html
18
-//!
19
//! # Example
20
21
//! ```
@@ -123,8 +119,6 @@ use alloc::rc::Rc;
123
119
use alloc::sync::Arc;
124
120
125
121
/// This trait is implemented by any type that implements [`std::clone::Clone`].
126
-///
127
-/// [`std::clone::Clone`]: https://doc.rust-lang.org/std/clone/trait.Clone.html
128
122
pub trait DynClone: Sealed {
129
// Not public API
130
#[doc(hidden)]
0 commit comments