pub trait Paginated: Request {
    fn set_pagination(&mut self, cursor: Option<Cursor>);
}
Available on crate feature helix only.
Expand description

A request that can be paginated.

Required Methods

Should returns the current pagination cursor.

Notes

Pass Option::None if no cursor is found.

Implementors