pub struct ListCover {
pub limit: Option<u32>,
pub offset: Option<u32>,
pub manga_ids: Vec<Uuid>,
pub cover_ids: Vec<Uuid>,
pub uploader_ids: Vec<Uuid>,
pub locales: Vec<Language>,
pub order: Option<CoverSortOrder>,
pub includes: Vec<ReferenceExpansionResource>,
/* private fields */
}
Expand description
Query parameters for /cover
.
Fields§
§limit: Option<u32>
§offset: Option<u32>
§manga_ids: Vec<Uuid>
§cover_ids: Vec<Uuid>
§uploader_ids: Vec<Uuid>
§locales: Vec<Language>
§order: Option<CoverSortOrder>
§includes: Vec<ReferenceExpansionResource>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ListCover
impl !RefUnwindSafe for ListCover
impl !Send for ListCover
impl !Sync for ListCover
impl Unpin for ListCover
impl !UnwindSafe for ListCover
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