[][src]Struct rbatis::plugin::page::PageRequest

pub struct PageRequest {
    pub total: u64,
    pub size: u64,
    pub current: u64,
    pub serch_count: bool,
}

Fields

total: u64

total num

size: u64

default 10

current: u64

current index

serch_count: bool

Implementations

impl PageRequest[src]

pub fn new(current: u64, size: u64) -> Self[src]

pub fn new_total(current: u64, size: u64, total: u64) -> Self[src]

Trait Implementations

impl Clone for PageRequest[src]

impl Debug for PageRequest[src]

impl Default for PageRequest[src]

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

impl IPageRequest for PageRequest[src]

impl Serialize for PageRequest[src]

impl ToString for PageRequest[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, U> Into<U> for T where
    U: From<T>, 
[src]

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> ToString for T where
    T: Display + ?Sized
[src]

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<V, T> VZip<V> for T where
    V: MultiLane<T>,