#[derive(Debug, Clone)] pub struct Photo { pub id: String, } impl Photo { pub fn new(id: String) -> Self { Self { id } } pub fn filename(&self) -> String { format!("{}.jpg", self.id) } }