pub struct PaginationLinks {
pub next: Option<Url>,
pub prev: Option<Url>,
}Expand description
Pagination links
Fields§
§next: Option<Url>Next page URL
prev: Option<Url>Previous page URL
Trait Implementations§
Source§impl Clone for PaginationLinks
impl Clone for PaginationLinks
Source§fn clone(&self) -> PaginationLinks
fn clone(&self) -> PaginationLinks
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto 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