pub struct PaginationLinks {
pub next: Option<Url>,
pub prev: Option<Url>,
}Expand description
Extract pagination links (rel=next/prev)
Fields§
§next: Option<Url>Next page URL from rel=“next”
prev: Option<Url>Previous page URL from rel=“prev”
Auto Trait Implementations§
impl Freeze for PaginationLinks
impl RefUnwindSafe for PaginationLinks
impl Send for PaginationLinks
impl Sync for PaginationLinks
impl Unpin for PaginationLinks
impl UnwindSafe for PaginationLinks
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