Trait List

Source
pub trait List:
    Unpin
    + Send
    + Sync {
    // Required method
    fn next(
        &mut self,
    ) -> impl Future<Output = Result<Option<Entry>>> + MaybeSend;
}
Expand description

Page trait is used by raw::Accessor to implement list operation.

Required Methods§

Source

fn next(&mut self) -> impl Future<Output = Result<Option<Entry>>> + MaybeSend

Fetch a new page of Entry

Ok(None) means all pages have been returned. Any following call to next will always get the same result.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl List for ()

Source§

async fn next(&mut self) -> Result<Option<Entry>>

Source§

impl<P: List> List for Option<P>

Source§

async fn next(&mut self) -> Result<Option<Entry>>

Source§

impl<T: ListDyn + ?Sized> List for Box<T>

Source§

async fn next(&mut self) -> Result<Option<Entry>>

Implementors§

Source§

impl<A, L> List for FlatLister<A, L>
where A: Access<Lister = L>, L: List,

Source§

impl<L> List for PageLister<L>
where L: PageList,

Source§

impl<L> List for PrefixLister<L>
where L: List,

Source§

impl<ONE, TWO, THREE, FOUR> List for FourWays<ONE, TWO, THREE, FOUR>
where ONE: List, TWO: List, THREE: List, FOUR: List,

Source§

impl<ONE: List, TWO: List> List for TwoWays<ONE, TWO>

Source§

impl<P: List> List for HierarchyLister<P>