[][src]Struct df_st_api::api_objects::ApiPageLinks

pub struct ApiPageLinks {
    pub self_: String,
    pub first: Option<String>,
    pub prev: Option<String>,
    pub next: Option<String>,
    pub last: Option<String>,
}

A list of links to easily enable navigation in paging.

Fields

self_: String

Link to this page itself. Can be used to refresh the data.

first: Option<String>

Link to the first page in the order. If None you are on the first page. Note: This can be the same link as prev.

prev: Option<String>

Link to the previous page in the order. If None there is no previous page.

next: Option<String>

Link to the next page in the order. If None there is no next page.

last: Option<String>

Link to the last page in the order. If None you are on the last page. Note: This can be the same link as next.

Trait Implementations

impl Clone for ApiPageLinks[src]

impl Debug for ApiPageLinks[src]

impl Default for ApiPageLinks[src]

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

impl JsonSchema for ApiPageLinks[src]

impl SchemaExample for ApiPageLinks[src]

impl Serialize for ApiPageLinks[src]

Auto Trait Implementations

impl RefUnwindSafe for ApiPageLinks

impl Send for ApiPageLinks

impl Sync for ApiPageLinks

impl Unpin for ApiPageLinks

impl UnwindSafe for ApiPageLinks

Blanket Implementations

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

impl<T, I> AsResult<T, I> for T where
    I: Input, 

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> DynClone for T where
    T: Clone
[src]

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

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

impl<T> IntoCollection<T> for T

impl<T> IntoSql for T

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,