pub struct ResponseLinks {
pub self_link: String,
pub next: Option<String>,
pub prev: Option<String>,
pub docs: String,
}Fields§
§self_link: String§next: Option<String>§prev: Option<String>§docs: StringTrait Implementations§
Source§impl Clone for ResponseLinks
impl Clone for ResponseLinks
Source§fn clone(&self) -> ResponseLinks
fn clone(&self) -> ResponseLinks
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 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