Struct wallabag_api::types::EntriesPage [−][src]
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 RefUnwindSafe for EntriesPage
impl Send for EntriesPage
impl Sync for EntriesPage
impl Unpin for EntriesPage
impl UnwindSafe for EntriesPage
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
type Output = T
type Output = T
Should always be Self
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more