pub struct MangaPageResult {
pub entries: Vec<Manga>,
pub has_next_page: bool,
}Expand description
A page of manga entries.
Fields§
§entries: Vec<Manga>List of manga entries.
has_next_page: boolWhether the next page is available or not.
Trait Implementations§
Source§impl Clone for MangaPageResult
impl Clone for MangaPageResult
Source§fn clone(&self) -> MangaPageResult
fn clone(&self) -> MangaPageResult
Returns a duplicate 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 MangaPageResult
impl Debug for MangaPageResult
Source§impl Default for MangaPageResult
impl Default for MangaPageResult
Source§fn default() -> MangaPageResult
fn default() -> MangaPageResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for MangaPageResult
impl PartialEq for MangaPageResult
Source§impl Serialize for MangaPageResult
impl Serialize for MangaPageResult
impl StructuralPartialEq for MangaPageResult
Auto Trait Implementations§
impl Freeze for MangaPageResult
impl RefUnwindSafe for MangaPageResult
impl Send for MangaPageResult
impl Sync for MangaPageResult
impl Unpin for MangaPageResult
impl UnwindSafe for MangaPageResult
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