pub struct CreateMangaBuilder {Show 17 fields
title: Option<LocalizedString>,
alt_titles: Option<Option<Vec<LocalizedString>>>,
description: Option<Option<LocalizedString>>,
authors: Option<Option<Vec<Uuid>>>,
artists: Option<Option<Vec<Uuid>>>,
links: Option<Option<MangaLinks>>,
original_language: Option<Language>,
last_volume: Option<Option<String>>,
last_chapter: Option<Option<String>>,
publication_demographic: Option<Option<Option<Demographic>>>,
status: Option<MangaStatus>,
year: Option<Option<Option<u16>>>,
content_rating: Option<ContentRating>,
chapter_numbers_reset_on_new_volume: Option<Option<bool>>,
tags: Option<Option<Vec<Uuid>>>,
primary_cover: Option<Option<Option<Uuid>>>,
version: Option<u32>,
/* private fields */
}
Expand description
Builder for CreateManga
.
Fields§
§title: Option<LocalizedString>
§alt_titles: Option<Option<Vec<LocalizedString>>>
§description: Option<Option<LocalizedString>>
§artists: Option<Option<Vec<Uuid>>>
§links: Option<Option<MangaLinks>>
§original_language: Option<Language>
§last_volume: Option<Option<String>>
§last_chapter: Option<Option<String>>
§publication_demographic: Option<Option<Option<Demographic>>>
§status: Option<MangaStatus>
§year: Option<Option<Option<u16>>>
Year the manga was released.
content_rating: Option<ContentRating>
§chapter_numbers_reset_on_new_volume: Option<Option<bool>>
§primary_cover: Option<Option<Option<Uuid>>>
Cover ID.
version: Option<u32>
= 1
Implementations§
Source§impl CreateMangaBuilder
impl CreateMangaBuilder
pub fn title<VALUE: Into<LocalizedString>>(&mut self, value: VALUE) -> &mut Self
pub fn add_title<VALUE>(&mut self, item: VALUE) -> &mut Self
pub fn alt_titles<VALUE: Into<Vec<LocalizedString>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn description<VALUE: Into<LocalizedString>>( &mut self, value: VALUE, ) -> &mut Self
pub fn artists<VALUE: Into<Vec<Uuid>>>(&mut self, value: VALUE) -> &mut Self
pub fn links<VALUE: Into<MangaLinks>>(&mut self, value: VALUE) -> &mut Self
pub fn original_language<VALUE: Into<Language>>( &mut self, value: VALUE, ) -> &mut Self
pub fn last_volume<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn last_chapter<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn publication_demographic<VALUE: Into<Option<Demographic>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn status<VALUE: Into<MangaStatus>>(&mut self, value: VALUE) -> &mut Self
Sourcepub fn year<VALUE: Into<Option<u16>>>(&mut self, value: VALUE) -> &mut Self
pub fn year<VALUE: Into<Option<u16>>>(&mut self, value: VALUE) -> &mut Self
Year the manga was released.
pub fn content_rating<VALUE: Into<ContentRating>>( &mut self, value: VALUE, ) -> &mut Self
pub fn chapter_numbers_reset_on_new_volume<VALUE: Into<bool>>( &mut self, value: VALUE, ) -> &mut Self
Sourcepub fn primary_cover<VALUE: Into<Option<Uuid>>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn primary_cover<VALUE: Into<Option<Uuid>>>( &mut self, value: VALUE, ) -> &mut Self
Cover ID.
Sourcepub fn build(&self) -> Result<CreateManga, BuilderError>
pub fn build(&self) -> Result<CreateManga, BuilderError>
Sourcefn create_empty() -> Self
fn create_empty() -> Self
Create an empty builder, with all fields set to None
or PhantomData
.
Trait Implementations§
Source§impl Clone for CreateMangaBuilder
impl Clone for CreateMangaBuilder
Source§fn clone(&self) -> CreateMangaBuilder
fn clone(&self) -> CreateMangaBuilder
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for CreateMangaBuilder
impl !RefUnwindSafe for CreateMangaBuilder
impl !Send for CreateMangaBuilder
impl !Sync for CreateMangaBuilder
impl Unpin for CreateMangaBuilder
impl !UnwindSafe for CreateMangaBuilder
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