We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Clone
Copy
1 parent 40c1623 commit 2788c71Copy full SHA for 2788c71
library/core/src/clone.rs
@@ -38,7 +38,7 @@
38
39
/// A common trait for the ability to explicitly duplicate an object.
40
///
41
-/// Differs from [`Copy`] in that [`Copy`] is implicit and extremely inexpensive, while
+/// Differs from [`Copy`] in that [`Copy`] is implicit and an inexpensive bit-wise copy, while
42
/// `Clone` is always explicit and may or may not be expensive. In order to enforce
43
/// these characteristics, Rust does not allow you to reimplement [`Copy`], but you
44
/// may reimplement `Clone` and run arbitrary code.
0 commit comments