[][src]Struct pagination::Page

pub struct Page<T> { /* fields omitted */ }

Page Query Result Model

Example

use pagination::Page;

let page = Page::new(vec!(10,20,30), 10);
let f1 = page[0];
assert_eq!(f1 , 10);

Implementations

impl<T> Page<T>[src]

pub fn new(records: Vec<T>, total: u64) -> Page<T>[src]

Arguments

  • records 当前页的记录数
  • total 总记录数

pub fn total(&self) -> u64[src]

pub fn size(&self) -> u32[src]

获取当前页记录数

pub fn records(&self) -> &Vec<T>[src]

Trait Implementations

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

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

impl<T> Index<u32> for Page<T>[src]

type Output = T

The returned type after indexing.

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

type Item = T

The type of the elements being iterated over.

type IntoIter = IntoIter<T>

Which kind of iterator are we turning this into?

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> From<T> for T[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.