Skip to content

Instantly share code, notes, and snippets.

@Gisleburt
Last active June 10, 2019 12:27
Show Gist options
  • Save Gisleburt/b6e5dbbc1308c998586ca687c64157c5 to your computer and use it in GitHub Desktop.
Save Gisleburt/b6e5dbbc1308c998586ca687c64157c5 to your computer and use it in GitHub Desktop.
impl fmt::Display for Albums {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.iter().fold(Ok(()), |result, album| {
result.and_then(|_| writeln!(f, "{}", album))
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment