```rust #[derive(Clone, Serialize, Deserialize)] // Enables the clone() method for Note instances struct Note { title: String, content: String, } ```