pub struct ListMangaBuilder<'a> {
Show 23 fields limit: Option<Option<u32>>, offset: Option<Option<u32>>, title: Option<Option<&'a str>>, authors: Option<Vec<Uuid>>, artists: Option<Vec<Uuid>>, year: Option<Option<u16>>, included_tags: Option<Vec<Tag>>, included_tags_mode: Option<Option<TagSearchMode>>, excluded_tags: Option<Vec<Tag>>, excluded_tags_mode: Option<Option<TagSearchMode>>, status: Option<Vec<MangaStatus>>, original_language: Option<Vec<Language>>, excluded_original_language: Option<Vec<Language>>, available_translated_language: Option<Vec<Language>>, publication_demographic: Option<Vec<Demographic>>, manga_ids: Option<Vec<Uuid>>, content_rating: Option<Vec<ContentRating>>, created_at_since: Option<Option<MangaDexDateTime>>, updated_at_since: Option<Option<MangaDexDateTime>>, order: Option<Option<MangaSortOrder>>, includes: Option<Vec<ReferenceExpansionResource>>, has_available_chapters: Option<Option<bool>>, group: Option<Option<Uuid>>, /* private fields */
}
Expand description

Builder for ListManga.

Fields

limit: Option<Option<u32>>offset: Option<Option<u32>>title: Option<Option<&'a str>>authors: Option<Vec<Uuid>>artists: Option<Vec<Uuid>>year: Option<Option<u16>>included_tags: Option<Vec<Tag>>included_tags_mode: Option<Option<TagSearchMode>>excluded_tags: Option<Vec<Tag>>excluded_tags_mode: Option<Option<TagSearchMode>>status: Option<Vec<MangaStatus>>original_language: Option<Vec<Language>>

Languages the manga results are originally published in.

excluded_original_language: Option<Vec<Language>>

A list of original languages to exclude.

available_translated_language: Option<Vec<Language>>

A list of languages that the manga is translated into.

publication_demographic: Option<Vec<Demographic>>manga_ids: Option<Vec<Uuid>>content_rating: Option<Vec<ContentRating>>created_at_since: Option<Option<MangaDexDateTime>>

DateTime string with following format: YYYY-MM-DDTHH:MM:SS.

updated_at_since: Option<Option<MangaDexDateTime>>

DateTime string with following format: YYYY-MM-DDTHH:MM:SS.

order: Option<Option<MangaSortOrder>>includes: Option<Vec<ReferenceExpansionResource>>has_available_chapters: Option<Option<bool>>group: Option<Option<Uuid>>

Scanlation group ID.

Implementations

Languages the manga results are originally published in.

Languages the manga results are originally published in.

A list of original languages to exclude.

A list of original languages to exclude.

A list of languages that the manga is translated into.

A list of languages that the manga is translated into.

DateTime string with following format: YYYY-MM-DDTHH:MM:SS.

DateTime string with following format: YYYY-MM-DDTHH:MM:SS.

Scanlation group ID.

Builds a new ListManga.

Errors

If a required field has not been initialized.

Create an empty builder, with all fields set to None or PhantomData.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more