Skip to content

Instantly share code, notes, and snippets.

@Gisleburt
Last active June 10, 2019 12:21
Show Gist options
  • Save Gisleburt/24e27a29d498622e696de0323f418fe2 to your computer and use it in GitHub Desktop.
Save Gisleburt/24e27a29d498622e696de0323f418fe2 to your computer and use it in GitHub Desktop.
struct User {
name: String,
albums: Vec<Album>,
}
impl User {
fn into_album(self) -> Albums {
Albums(self.albums)
}
fn get_albums(&self) -> Albums {
Albums(self.albums.clone())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment