Struct ciboulette::CibouletteBodyPagination[][src]

pub struct CibouletteBodyPagination<'request> {
    pub first: Option<Cow<'request, str>>,
    pub last: Option<Cow<'request, str>>,
    pub prev: Option<Cow<'request, str>>,
    pub next: Option<Cow<'request, str>>,
}

Fields

first: Option<Cow<'request, str>>last: Option<Cow<'request, str>>prev: Option<Cow<'request, str>>next: Option<Cow<'request, str>>

Implementations

impl<'request> CibouletteBodyPagination<'request>[src]

pub fn first(&self) -> &Option<Cow<'request, str>>[src]

pub fn last(&self) -> &Option<Cow<'request, str>>[src]

pub fn prev(&self) -> &Option<Cow<'request, str>>[src]

pub fn next(&self) -> &Option<Cow<'request, str>>[src]

Trait Implementations

impl<'request> Clone for CibouletteBodyPagination<'request>[src]

impl<'request> Debug for CibouletteBodyPagination<'request>[src]

impl<'request> Default for CibouletteBodyPagination<'request>[src]

impl<'de, 'request> Deserialize<'de> for CibouletteBodyPagination<'request> where
    CibouletteBodyPagination<'request>: Default
[src]

impl<'request> Serialize for CibouletteBodyPagination<'request>[src]

Auto Trait Implementations

impl<'request> RefUnwindSafe for CibouletteBodyPagination<'request>

impl<'request> Send for CibouletteBodyPagination<'request>

impl<'request> Sync for CibouletteBodyPagination<'request>

impl<'request> Unpin for CibouletteBodyPagination<'request>

impl<'request> UnwindSafe for CibouletteBodyPagination<'request>

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, 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.