Skip to content

Instantly share code, notes, and snippets.

@Gisleburt
Last active June 10, 2019 12:09
Show Gist options
  • Save Gisleburt/9e21226b5e5395dc1b8e27c737e6db09 to your computer and use it in GitHub Desktop.
Save Gisleburt/9e21226b5e5395dc1b8e27c737e6db09 to your computer and use it in GitHub Desktop.
use std::fmt;
impl fmt::Display for Album {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{} ({})", self.title, self.artist)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment