pub struct ListManga {Show 24 fields
pub limit: Option<u32>,
pub offset: Option<u32>,
pub title: Option<String>,
pub author_or_artist: Option<Uuid>,
pub authors: Vec<Uuid>,
pub artists: Vec<Uuid>,
pub year: Option<u16>,
pub included_tags: Vec<Uuid>,
pub included_tags_mode: Option<TagSearchMode>,
pub excluded_tags: Vec<Uuid>,
pub excluded_tags_mode: Option<TagSearchMode>,
pub status: Vec<MangaStatus>,
pub original_language: Vec<Language>,
pub excluded_original_language: Vec<Language>,
pub available_translated_language: Vec<Language>,
pub publication_demographic: Vec<Demographic>,
pub manga_ids: Vec<Uuid>,
pub content_rating: Vec<ContentRating>,
pub created_at_since: Option<MangaDexDateTime>,
pub updated_at_since: Option<MangaDexDateTime>,
pub order: Option<MangaSortOrder>,
pub includes: Vec<ReferenceExpansionResource>,
pub has_available_chapters: Option<bool>,
pub group: Option<Uuid>,
/* private fields */
}
Fields§
§limit: Option<u32>
§offset: Option<u32>
§title: Option<String>
§artists: Vec<Uuid>
§year: Option<u16>
§status: Vec<MangaStatus>
§original_language: Vec<Language>
Languages the manga results are originally published in.
excluded_original_language: Vec<Language>
A list of original languages to exclude.
available_translated_language: Vec<Language>
A list of languages that the manga is translated into.
publication_demographic: Vec<Demographic>
§manga_ids: Vec<Uuid>
§content_rating: Vec<ContentRating>
§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
.
order: Option<MangaSortOrder>
§includes: Vec<ReferenceExpansionResource>
§has_available_chapters: Option<bool>
§group: Option<Uuid>
Scanlation group ID.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ListManga
impl !RefUnwindSafe for ListManga
impl !Send for ListManga
impl !Sync for ListManga
impl Unpin for ListManga
impl !UnwindSafe for ListManga
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