pub struct PaginationUrls {
pub first: Option<String>,
pub last: Option<String>,
pub prev: Option<String>,
pub next: Option<String>,
}
Fields§
§first: Option<String>
§last: Option<String>
§prev: Option<String>
§next: Option<String>
Trait Implementations§
Source§impl Clone for PaginationUrls
impl Clone for PaginationUrls
Source§fn clone(&self) -> PaginationUrls
fn clone(&self) -> PaginationUrls
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 PaginationUrls
impl Debug for PaginationUrls
Source§impl<'de> Deserialize<'de> for PaginationUrls
impl<'de> Deserialize<'de> for PaginationUrls
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 PaginationUrls
impl RefUnwindSafe for PaginationUrls
impl Send for PaginationUrls
impl Sync for PaginationUrls
impl Unpin for PaginationUrls
impl UnwindSafe for PaginationUrls
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