pub struct ChapterBuilder {
    http_client: HttpClientRef,
}
Expand description

Chapter endpoint handler builder.

Fields

http_client: HttpClientRef

Implementations

Search a list of chapters.

https://api.mangadex.org/swagger.html#/Chapter/get-chapter

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

View a single chapter.

https://api.mangadex.org/swagger.html#/Chapter/get-chapter-id

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

Mark multiple chapters for one manga as read and/or unread.

https://api.mangadex.org/swagger.html#/Chapter/post-manga-chapter-readmarkers

Mark a chapter as read for the current user.

https://api.mangadex.org/swagger.html#/Chapter/chapter-id-read

Mark a chapter as unread for the current user.

https://api.mangadex.org/swagger.html#/Chapter/chapter-id-unread

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().

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