pub struct ListChapter {Show 24 fields
pub limit: Option<u32>,
pub offset: Option<u32>,
pub chapter_ids: Vec<Uuid>,
pub title: Option<String>,
pub groups: Vec<Uuid>,
pub uploaders: Vec<Uuid>,
pub manga_id: Option<Uuid>,
pub volumes: Vec<String>,
pub chapters: Vec<String>,
pub translated_languages: Vec<Language>,
pub original_languages: Vec<Language>,
pub excluded_original_languages: Vec<Language>,
pub content_rating: Vec<ContentRating>,
pub excluded_groups: Vec<Uuid>,
pub excluded_uploaders: Vec<Uuid>,
pub include_future_updates: Option<IncludeFutureUpdates>,
pub created_at_since: Option<MangaDexDateTime>,
pub updated_at_since: Option<MangaDexDateTime>,
pub publish_at_since: Option<MangaDexDateTime>,
pub include_empty_pages: Option<IncludeFuturePages>,
pub include_external_url: Option<IncludeExternalUrl>,
pub include_future_publish_at: Option<IncludeFuturePublishAt>,
pub order: Option<ChapterSortOrder>,
pub includes: Vec<ReferenceExpansionResource>,
/* private fields */
}
Fields§
§limit: Option<u32>
§offset: Option<u32>
§chapter_ids: Vec<Uuid>
§title: Option<String>
§groups: Vec<Uuid>
§uploaders: Vec<Uuid>
§manga_id: Option<Uuid>
§volumes: Vec<String>
§chapters: Vec<String>
Chapter number in the series or volume.
translated_languages: Vec<Language>
§original_languages: Vec<Language>
§excluded_original_languages: Vec<Language>
§content_rating: Vec<ContentRating>
§excluded_groups: Vec<Uuid>
Groups to exclude from the results.
excluded_uploaders: Vec<Uuid>
Uploaders to exclude from the results.
include_future_updates: Option<IncludeFutureUpdates>
Flag to include future chapter updates in the results.
Default: IncludeFutureUpdates::Include
(1)
created_at_since: Option<MangaDexDateTime>
DateTime string with following format: YYYY-MM-DDTHH:MM:SS
.
updated_at_since: Option<MangaDexDateTime>
DateTime string with following format: YYYY-MM-DDTHH:MM:SS
.
publish_at_since: Option<MangaDexDateTime>
DateTime string with following format: YYYY-MM-DDTHH:MM:SS
.
include_empty_pages: Option<IncludeFuturePages>
Include empty pages
include_external_url: Option<IncludeExternalUrl>
Include external url chapters
include_future_publish_at: Option<IncludeFuturePublishAt>
Include future publish at
order: Option<ChapterSortOrder>
§includes: Vec<ReferenceExpansionResource>
Implementations§
Source§impl ListChapter
impl ListChapter
Sourcepub async fn send(&self) -> ChapterListResponse
pub async fn send(&self) -> ChapterListResponse
Send the request.
Trait Implementations§
Source§impl Clone for ListChapter
impl Clone for ListChapter
Source§fn clone(&self) -> ListChapter
fn clone(&self) -> ListChapter
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 moreSource§impl Debug for ListChapter
impl Debug for ListChapter
Source§impl Default for ListChapter
impl Default for ListChapter
Source§fn default() -> ListChapter
fn default() -> ListChapter
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListChapter
impl !RefUnwindSafe for ListChapter
impl !Send for ListChapter
impl !Sync for ListChapter
impl Unpin for ListChapter
impl !UnwindSafe for ListChapter
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