Struct mangadex::api::manga::ListManga[][src]

pub struct ListManga<'a> {
Show fields pub limit: Option<i32>, pub offset: Option<i32>, pub title: Option<String>, pub authors: Vec<&'a Uuid>, pub artists: Vec<&'a Uuid>, pub year: Option<i32>, pub included_tags: Vec<&'a Uuid>, pub included_tags_mode: Option<TagMode>, pub excluded_tags: Vec<&'a Uuid>, pub excluded_tags_mode: Option<TagMode>, pub status: Vec<MangaStatus>, pub original_language: Vec<String>, pub publication_demographic: Vec<Demographic>, pub manga_ids: Vec<Uuid>, pub content_rating: Option<ContentRating>, pub created_at_since: Option<DateTime<Utc>>, pub updated_at_since: Option<DateTime<Utc>>, pub order: Option<MangaOrder>,
}
Expand description

Manga list

Search a list of manga

Call to GET /manga

Fields

limit: Option<i32>

Page size

offset: Option<i32>

Page offset

title: Option<String>

Manga title

authors: Vec<&'a Uuid>

Manga authors

artists: Vec<&'a Uuid>

Manga artists

year: Option<i32>

Year of release

included_tags: Vec<&'a Uuid>

Included tags

included_tags_mode: Option<TagMode>

Tag inclusion mode

excluded_tags: Vec<&'a Uuid>

Excluded tags

excluded_tags_mode: Option<TagMode>

Tag exclusion mode

status: Vec<MangaStatus>

Manga status

original_language: Vec<String>

Original language

publication_demographic: Vec<Demographic>

Publication demographic

manga_ids: Vec<Uuid>

Manga ids

content_rating: Option<ContentRating>

Content rating

created_at_since: Option<DateTime<Utc>>

Created after this time

updated_at_since: Option<DateTime<Utc>>

Updated after this time

order: Option<MangaOrder>

Sorting order

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Serialize this value into the given Serde serializer. 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

Performs the conversion.

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

Performs the conversion.

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)

recently added

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.