pub struct GetFollowedMangaFeed {Show 17 fields
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§
§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 GetFollowedMangaFeed
impl GetFollowedMangaFeed
Sourcepub async fn send(&self) -> ChapterListResponse
pub async fn send(&self) -> ChapterListResponse
Send the request.
Trait Implementations§
Source§impl Clone for GetFollowedMangaFeed
impl Clone for GetFollowedMangaFeed
Source§fn clone(&self) -> GetFollowedMangaFeed
fn clone(&self) -> GetFollowedMangaFeed
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 GetFollowedMangaFeed
impl Debug for GetFollowedMangaFeed
Source§impl Default for GetFollowedMangaFeed
impl Default for GetFollowedMangaFeed
Source§fn default() -> GetFollowedMangaFeed
fn default() -> GetFollowedMangaFeed
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetFollowedMangaFeed
impl !RefUnwindSafe for GetFollowedMangaFeed
impl !Send for GetFollowedMangaFeed
impl !Sync for GetFollowedMangaFeed
impl Unpin for GetFollowedMangaFeed
impl !UnwindSafe for GetFollowedMangaFeed
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