pub struct GetMangaFeed {Show 18 fields
pub manga_id: Uuid,
pub limit: Option<u32>,
pub offset: Option<u32>,
pub translated_language: Vec<Language>,
pub original_language: Vec<Language>,
pub excluded_original_language: 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 order: Option<MangaFeedSortOrder>,
pub includes: Vec<ReferenceExpansionResource>,
pub include_empty_pages: Option<IncludeFuturePages>,
pub include_future_publish_at: Option<IncludeFuturePublishAt>,
pub include_external_url: Option<IncludeExternalUrl>,
/* private fields */
}
Fields§
§manga_id: Uuid
§limit: Option<u32>
§offset: Option<u32>
§translated_language: Vec<Language>
§original_language: Vec<Language>
§excluded_original_language: 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
.
order: Option<MangaFeedSortOrder>
§includes: Vec<ReferenceExpansionResource>
§include_empty_pages: Option<IncludeFuturePages>
§include_future_publish_at: Option<IncludeFuturePublishAt>
§include_external_url: Option<IncludeExternalUrl>
Implementations§
Source§impl GetMangaFeed
impl GetMangaFeed
Sourcepub async fn send(&self) -> ChapterListResponse
pub async fn send(&self) -> ChapterListResponse
Send the request.
Trait Implementations§
Source§impl Clone for GetMangaFeed
impl Clone for GetMangaFeed
Source§fn clone(&self) -> GetMangaFeed
fn clone(&self) -> GetMangaFeed
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 GetMangaFeed
impl Debug for GetMangaFeed
Auto Trait Implementations§
impl Freeze for GetMangaFeed
impl !RefUnwindSafe for GetMangaFeed
impl !Send for GetMangaFeed
impl !Sync for GetMangaFeed
impl Unpin for GetMangaFeed
impl !UnwindSafe for GetMangaFeed
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