pub struct MasterBuilder { /* private fields */ }Implementations§
Source§impl MasterBuilder
impl MasterBuilder
pub fn id(self, id: u32) -> Self
pub fn title(self, title: &str) -> Self
pub fn main_release(self, id: u32) -> Self
pub fn notes(self, notes: &str) -> Self
pub fn year(self, year: u16) -> Self
pub fn genre(self, genre: &str) -> Self
pub fn style(self, style: &str) -> Self
pub fn data_quality(self, data_quality: &str) -> Self
pub fn artist(self, credit: ArtistCreditBuilder) -> Self
pub fn image(self, ty: &str, width: i16, height: i16) -> Self
pub fn video( self, src: &str, duration: u32, title: &str, description: &str, ) -> Self
pub fn build(self) -> Master
Auto Trait Implementations§
impl Freeze for MasterBuilder
impl RefUnwindSafe for MasterBuilder
impl Send for MasterBuilder
impl Sync for MasterBuilder
impl Unpin for MasterBuilder
impl UnwindSafe for MasterBuilder
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