Skip to content

Instantly share code, notes, and snippets.

@Gisleburt
Last active June 10, 2019 12:27
Show Gist options
  • Save Gisleburt/a9d8f791538bb9cfe07c0abd3eaeeb6c to your computer and use it in GitHub Desktop.
Save Gisleburt/a9d8f791538bb9cfe07c0abd3eaeeb6c to your computer and use it in GitHub Desktop.
use std::ops;
impl ops::Deref for Albums {
type Target = Vec<Album>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment