Trait rbatis::plugin::page::IPage[][src]

pub trait IPage<T>: IPageRequest {
    fn get_records(&self) -> &Vec<T>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
;
fn get_records_mut(&mut self) -> &mut Vec<T>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
;
fn set_records(&mut self, arg: Vec<T>); }
Expand description

Page interface, support get_pages() and offset()

Required methods

Implementors