1.Copy is enabled for primitive, built-in types.
2.Without Copy, Rust applies move semantics to a type's access.
3.When using Clone, copying data is explicit.
4.Until a type implements either Copy or Clone, its internal data cannot be copied
Answer:1