pub struct Master {
pub id: u32,
pub title: String,
pub main_release: u32,
pub year: u16,
pub notes: Option<String>,
pub genres: Vec<String>,
pub styles: Vec<String>,
pub data_quality: String,
pub artists: Vec<ArtistCredit>,
pub images: Vec<Image>,
pub videos: Vec<Video>,
}Fields§
§id: u32§title: String§main_release: u32§year: u16§notes: Option<String>§genres: Vec<String>§styles: Vec<String>§data_quality: String§artists: Vec<ArtistCredit>§images: Vec<Image>§videos: Vec<Video>Implementations§
Trait Implementations§
impl Eq for Master
impl StructuralPartialEq for Master
Auto Trait Implementations§
impl Freeze for Master
impl RefUnwindSafe for Master
impl Send for Master
impl Sync for Master
impl Unpin for Master
impl UnwindSafe for Master
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more