pub enum NextPage {
QueryParams(Vec<(String, String)>),
NewUrl(String),
}Expand description
Describes how to modify the next request for pagination.
Variants§
QueryParams(Vec<(String, String)>)
Modify query parameters on the original URL.
NewUrl(String)
Use a completely new URL for the next request.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NextPage
impl RefUnwindSafe for NextPage
impl Send for NextPage
impl Sync for NextPage
impl Unpin for NextPage
impl UnsafeUnpin for NextPage
impl UnwindSafe for NextPage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more