[][src]Struct wallabag_api::types::EntriesPage

pub struct EntriesPage {
    pub per_page: u32,
    pub current_page: u32,
    pub total_pages: u32,
    pub total_entries: u32,
    pub entries: Entries,
}

Represents a page of Entries returned. Includes both the payload and metadata about the page.

Fields

per_page: u32

Number 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: u32

The current page number of results.

total_pages: u32

Total number of pages in the set.

total_entries: u32

Total number of entries in the query set.

entries: Entries

The list of entries returned.

Trait Implementations

impl Debug for EntriesPage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.