Struct google_androidenterprise1::api::TokenPagination[][src]

pub struct TokenPagination {
    pub next_page_token: Option<String>,
    pub previous_page_token: Option<String>,
}

Pagination information returned by a List operation when token pagination is enabled. List operations that supports paging return only one “page” of results. This protocol buffer message describes the page that has been returned. When using token pagination, clients should use the next/previous token to get another page of the result. The presence or absence of next/previous token indicates whether a next/previous page is available and provides a mean of accessing this page. ListRequest.page_token should be set to either next_page_token or previous_page_token to access another page.

This type is not used in any activity, and only used as part of another schema.

Fields

next_page_token: Option<String>

Tokens to pass to the standard list field ‘page_token’. Whenever available, tokens are preferred over manipulating start_index.

previous_page_token: Option<String>

no description provided

Trait Implementations

impl Clone for TokenPagination[src]

impl Debug for TokenPagination[src]

impl Default for TokenPagination[src]

impl<'de> Deserialize<'de> for TokenPagination[src]

impl Part for TokenPagination[src]

impl Serialize for TokenPagination[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.