pub struct MangaBuilder {
    http_client: HttpClientRef,
}
Expand description

Manga endpoint handler.

Fields

http_client: HttpClientRef

Implementations

Search a list of Manga.

https://api.mangadex.org/swagger.html#/Manga/get-search-manga

This is an alias for the Self::list() function.

View a single Manga.

https://api.mangadex.org/swagger.html#/Manga/get-manga-id

This is an alias for Self::get() to maintain backwards-compatibility.

Get the manga feed (chapter list) of manga the logged-in user follows.

https://api.mangadex.org/swagger.html#/Feed/get-user-follows-manga-feed

Alias to MangaDexClient::user().followed_manga_feed().

Get a random manga, chosen by MangaDex.

https://api.mangadex.org/swagger.html#/Manga/get-manga-random

Get a list of chapter IDs that are marked as read for the specified manga.

https://api.mangadex.org/swagger.html#/Manga/get-manga-chapter-readmarkers

Get a list of chapter IDs that are marked as read for the given manga IDs.

https://api.mangadex.org/swagger.html#/Manga/get-manga-chapter-readmarkers-2

Get the reading status for a given followed manga.

https://api.mangadex.org/swagger.html#/Manga/get-manga-id-status

Get the reading statuses for all followed manga for the logged-in user.

https://api.mangadex.org/swagger.html#/Manga/get-manga-status

Update the reading status for a manga.

Using a None (null) value in the status field will remove the reading status.

https://api.mangadex.org/swagger.html#/Manga/post-manga-id-status

Submit a Manga Draft.

A Manga Draft that is to be submitted must have at least one cover, must be in the “draft” state and must be passed the correct version in the request body.

https://api.mangadex.org/swagger.html#/Manga/commit-manga-draft

Get a list of Manga Drafts.

This is an alias for the Self::list_drafts() function.

https://api.mangadex.org/swagger.html#/Manga/get-manga-drafts

Trait Implementations

Formats the value using the given formatter. 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 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