pub struct ReportLinks {
pub first: Option<LinkHref>,
pub prev: Option<LinkHref>,
pub self_link: Option<LinkHref>,
pub next: Option<LinkHref>,
pub last: Option<LinkHref>,
}Expand description
Pagination links for navigating report pages
Fields§
§first: Option<LinkHref>Link to first page
prev: Option<LinkHref>Link to previous page
self_link: Option<LinkHref>Link to current page (self)
next: Option<LinkHref>Link to next page
last: Option<LinkHref>Link to last page
Trait Implementations§
Source§impl Clone for ReportLinks
impl Clone for ReportLinks
Source§fn clone(&self) -> ReportLinks
fn clone(&self) -> ReportLinks
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 moreSource§impl Debug for ReportLinks
impl Debug for ReportLinks
Source§impl<'de> Deserialize<'de> for ReportLinks
impl<'de> Deserialize<'de> for ReportLinks
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReportLinks
impl RefUnwindSafe for ReportLinks
impl Send for ReportLinks
impl Sync for ReportLinks
impl Unpin for ReportLinks
impl UnwindSafe for ReportLinks
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