use crate::error::Error; use crate::Result; #[derive(sqlx::FromRow, sqlx::Type)] pub struct Artist { artist_id: Option, pub handle: String, pub name: Option, pub bio: Option, pub site: Option, } impl Artist { pub fn new(handle: String) -> Self { Self { artist_id: None, handle, name: None, bio: None, site: None, } } pub fn artist_id(&self) -> Option { self.artist_id } }