pub struct ResponseLinks {
pub prev: Option<String>,
pub next: Option<String>,
}
Fields§
§prev: Option<String>
The link to the previous page in the results. If this value is None
there is no previous page.
next: Option<String>
The link to the next page in the results. If this value is None
there
is no next page.
Trait Implementations§
Source§impl Debug for ResponseLinks
impl Debug for ResponseLinks
Source§impl<'de> Deserialize<'de> for ResponseLinks
impl<'de> Deserialize<'de> for ResponseLinks
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 ResponseLinks
impl RefUnwindSafe for ResponseLinks
impl Send for ResponseLinks
impl Sync for ResponseLinks
impl Unpin for ResponseLinks
impl UnwindSafe for ResponseLinks
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