So implementieren Sie das Kopiermerkmal für einen Strukturrost

struct MyStruct;

impl Copy for MyStruct { }

impl Clone for MyStruct {
    fn clone(&self) -> MyStruct {
        *self
    }
}
Coding Wizard