pub struct ListCovers<'a> {
pub limit: Option<i32>,
pub offset: Option<i32>,
pub manga: Vec<&'a Uuid>,
pub covers: Vec<&'a Uuid>,
pub uploaders: Vec<&'a Uuid>,
pub order: Option<CoverOrder>,
}Expand description
Cover art list
Call to GET /cover
Fields§
§limit: Option<i32>Page size (max 100)
offset: Option<i32>Page offset (max ~10k)
manga: Vec<&'a Uuid>Manga ids (max 100)
covers: Vec<&'a Uuid>Cover ids (max 100)
uploaders: Vec<&'a Uuid>Uploader ids (max 100)
order: Option<CoverOrder>Sort order
Implementations§
Trait Implementations§
Source§impl<'a> Clone for ListCovers<'a>
impl<'a> Clone for ListCovers<'a>
Source§fn clone(&self) -> ListCovers<'a>
fn clone(&self) -> ListCovers<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for ListCovers<'a>
impl<'a> Debug for ListCovers<'a>
Source§impl<'a> Default for ListCovers<'a>
impl<'a> Default for ListCovers<'a>
Source§fn default() -> ListCovers<'a>
fn default() -> ListCovers<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ListCovers<'a>
impl<'a> RefUnwindSafe for ListCovers<'a>
impl<'a> Send for ListCovers<'a>
impl<'a> Sync for ListCovers<'a>
impl<'a> Unpin for ListCovers<'a>
impl<'a> UnsafeUnpin for ListCovers<'a>
impl<'a> UnwindSafe for ListCovers<'a>
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