1 2 3 4 5 6 7 8
use crate::library::artist::Artist; impl Artist { #[must_use] pub fn name(&self) -> &str { &self.name } }