pub struct UpdateMangaBuilder {Show 18 fields
manga_id: Option<Uuid>,
title: Option<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<Option<Language>>,
last_volume: Option<Option<Option<String>>>,
last_chapter: Option<Option<Option<String>>>,
publication_demographic: Option<Option<Option<Demographic>>>,
status: Option<Option<MangaStatus>>,
year: Option<Option<Option<u16>>>,
content_rating: Option<Option<ContentRating>>,
chapter_numbers_reset_on_new_volume: Option<bool>,
tags: Option<Option<Vec<Uuid>>>,
primary_cover: Option<Option<Option<Uuid>>>,
version: Option<u32>,
/* private fields */
}
Expand description
Builder for UpdateManga
.
Fields§
§manga_id: Option<Uuid>
§title: Option<Option<LocalizedString>>
§alt_titles: Option<Option<Vec<LocalizedString>>>
§description: Option<Option<LocalizedString>>
§artists: Option<Option<Vec<Uuid>>>
§links: Option<Option<MangaLinks>>
§original_language: Option<Option<Language>>
§last_volume: Option<Option<Option<String>>>
§last_chapter: Option<Option<Option<String>>>
§publication_demographic: Option<Option<Option<Demographic>>>
§status: Option<Option<MangaStatus>>
§year: Option<Option<Option<u16>>>
Year the manga was released.
content_rating: Option<Option<ContentRating>>
§chapter_numbers_reset_on_new_volume: Option<bool>
§primary_cover: Option<Option<Option<Uuid>>>
§version: Option<u32>
= 1
Implementations§
Source§impl UpdateMangaBuilder
impl UpdateMangaBuilder
pub fn manga_id<VALUE: Into<Uuid>>(&mut self, value: VALUE) -> &mut Self
pub fn title<VALUE: Into<LocalizedString>>(&mut self, value: 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<Option<String>>>( &mut self, value: VALUE, ) -> &mut Self
pub fn last_chapter<VALUE: Into<Option<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
pub fn primary_cover<VALUE: Into<Option<Uuid>>>( &mut self, value: VALUE, ) -> &mut Self
Sourcepub fn build(&self) -> Result<UpdateManga, BuilderError>
pub fn build(&self) -> Result<UpdateManga, 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 UpdateMangaBuilder
impl Clone for UpdateMangaBuilder
Source§fn clone(&self) -> UpdateMangaBuilder
fn clone(&self) -> UpdateMangaBuilder
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 UpdateMangaBuilder
impl !RefUnwindSafe for UpdateMangaBuilder
impl !Send for UpdateMangaBuilder
impl !Sync for UpdateMangaBuilder
impl Unpin for UpdateMangaBuilder
impl !UnwindSafe for UpdateMangaBuilder
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