pub struct CustomListMangaFeed {Show 18 fields
pub list_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 include_empty_pages: Option<IncludeFuturePages>,
pub include_future_publish_at: Option<IncludeFuturePublishAt>,
pub include_external_url: Option<IncludeExternalUrl>,
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>,
/* private fields */
}
Fields§
§list_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)
include_empty_pages: Option<IncludeFuturePages>
§include_future_publish_at: Option<IncludeFuturePublishAt>
§include_external_url: Option<IncludeExternalUrl>
§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>
Implementations§
Source§impl CustomListMangaFeed
impl CustomListMangaFeed
Sourcepub async fn send(&self) -> ChapterListResponse
pub async fn send(&self) -> ChapterListResponse
Send the request.
Trait Implementations§
Source§impl Clone for CustomListMangaFeed
impl Clone for CustomListMangaFeed
Source§fn clone(&self) -> CustomListMangaFeed
fn clone(&self) -> CustomListMangaFeed
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 CustomListMangaFeed
impl Debug for CustomListMangaFeed
Auto Trait Implementations§
impl Freeze for CustomListMangaFeed
impl !RefUnwindSafe for CustomListMangaFeed
impl !Send for CustomListMangaFeed
impl !Sync for CustomListMangaFeed
impl Unpin for CustomListMangaFeed
impl !UnwindSafe for CustomListMangaFeed
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