[][src]Struct cdrs_temp::cluster::QueryPager

pub struct QueryPager<'a, Q: ToString, P: 'a> {
    pub pager_state: PagerState,
    // some fields omitted
}

Fields

pager_state: PagerState

Implementations

impl<'a, Q: ToString, T: CDRSTransport + 'static, M: ManageConnection<Connection = RefCell<T>, Error = Error> + Sized, S: CDRSSession<'static, T, M>> QueryPager<'a, Q, SessionPager<'a, M, S, T>>[src]

pub fn next(&mut self) -> Result<Vec<Row>>[src]

pub fn has_more(&self) -> bool[src]

pub fn pager_state(&self) -> PagerState[src]

This method returns a copy of pager state so the state may be used later for continuing paging.

Auto Trait Implementations

impl<'a, Q, P> RefUnwindSafe for QueryPager<'a, Q, P> where
    P: RefUnwindSafe,
    Q: RefUnwindSafe

impl<'a, Q, P> Send for QueryPager<'a, Q, P> where
    P: Send,
    Q: Send

impl<'a, Q, P> Sync for QueryPager<'a, Q, P> where
    P: Sync,
    Q: Sync

impl<'a, Q, P> Unpin for QueryPager<'a, Q, P> where
    Q: Unpin

impl<'a, Q, P> !UnwindSafe for QueryPager<'a, Q, P>

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<T> Sealed<T> for T where
    T: ?Sized

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.