pub struct ListLinksResult {
pub links: Vec<Link>,
pub next_cursor: Option<i64>,
}Expand description
A page of Link results from GET /v1/links.
Fields§
§links: Vec<Link>Links on this page, newest first.
next_cursor: Option<i64>Cursor for the next page, or None when this is the last page.
Implementations§
Trait Implementations§
Source§impl Clone for ListLinksResult
impl Clone for ListLinksResult
Source§fn clone(&self) -> ListLinksResult
fn clone(&self) -> ListLinksResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListLinksResult
impl Debug for ListLinksResult
Source§impl<'de> Deserialize<'de> for ListLinksResult
impl<'de> Deserialize<'de> for ListLinksResult
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
impl Eq for ListLinksResult
Source§impl PartialEq for ListLinksResult
impl PartialEq for ListLinksResult
Source§fn eq(&self, other: &ListLinksResult) -> bool
fn eq(&self, other: &ListLinksResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ListLinksResult
impl Serialize for ListLinksResult
impl StructuralPartialEq for ListLinksResult
Auto Trait Implementations§
impl Freeze for ListLinksResult
impl RefUnwindSafe for ListLinksResult
impl Send for ListLinksResult
impl Sync for ListLinksResult
impl Unpin for ListLinksResult
impl UnsafeUnpin for ListLinksResult
impl UnwindSafe for ListLinksResult
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