pub struct EntriesPage {
pub per_page: u32,
pub current_page: u32,
pub total_pages: u32,
pub total_entries: u32,
pub entries: Entries,
}Expand description
Represents a page of Entries returned. Includes both the payload and metadata about the page.
Fields§
§per_page: u32Number of entries returned per page. This is set by the server; useful to know if you’re accepting the server default because this will inform what the server default is.
current_page: u32The current page number of results.
total_pages: u32Total number of pages in the set.
total_entries: u32Total number of entries in the query set.
entries: EntriesThe list of entries returned.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EntriesPage
impl RefUnwindSafe for EntriesPage
impl Send for EntriesPage
impl Sync for EntriesPage
impl Unpin for EntriesPage
impl UnwindSafe for EntriesPage
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