Struct wallabag_api::types::EntriesPage
source · 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.