Which statement about the Clone and Copy traits is false?
Clone
Copy
Copy is enabled for primitive, built-in types.
Without Copy, Rust applies move semantics to a type's access.
Until a type implements either Copy or Clone, its internal data cannot be copied. ref from stack overflow
When using Clone, copying data is explicit.