Struct lexoffice::model::pages::Page[][src]

pub struct Page<T> {
    pub content: Vec<T>,
    pub last: bool,
    pub total_pages: usize,
    pub total_elements: usize,
    pub sort: Value,
    pub size: usize,
    pub number: usize,
    pub first: bool,
    pub number_of_elements: usize,
}

Fields

content: Vec<T>last: booltotal_pages: usizetotal_elements: usizesort: Valuesize: usizenumber: usizefirst: boolnumber_of_elements: usize

Trait Implementations

impl<T: Clone> Clone for Page<T>[src]

impl<T: Debug> Debug for Page<T>[src]

impl<'de, T> Deserialize<'de> for Page<T> where
    T: Deserialize<'de>, 
[src]

impl<T: PartialEq> PartialEq<Page<T>> for Page<T>[src]

impl<T> Serialize for Page<T> where
    T: Serialize
[src]

impl<T> StructuralPartialEq for Page<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Page<T> where
    T: RefUnwindSafe

impl<T> Send for Page<T> where
    T: Send

impl<T> Sync for Page<T> where
    T: Sync

impl<T> Unpin for Page<T> where
    T: Unpin

impl<T> UnwindSafe for Page<T> where
    T: UnwindSafe

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.