pub struct GetLinkedCollectionsPaginatedResponse {
pub data: Option<Vec<CollectionLinkDto>>,
pub next: Option<Option<String>>,
}
Fields§
§data: Option<Vec<CollectionLinkDto>>
The data of the current page
next: Option<Option<String>>
The ID of the next page
Implementations§
Trait Implementations§
Source§impl Clone for GetLinkedCollectionsPaginatedResponse
impl Clone for GetLinkedCollectionsPaginatedResponse
Source§fn clone(&self) -> GetLinkedCollectionsPaginatedResponse
fn clone(&self) -> GetLinkedCollectionsPaginatedResponse
Returns a copy 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 Default for GetLinkedCollectionsPaginatedResponse
impl Default for GetLinkedCollectionsPaginatedResponse
Source§fn default() -> GetLinkedCollectionsPaginatedResponse
fn default() -> GetLinkedCollectionsPaginatedResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetLinkedCollectionsPaginatedResponse
impl<'de> Deserialize<'de> for GetLinkedCollectionsPaginatedResponse
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
Source§impl PartialEq for GetLinkedCollectionsPaginatedResponse
impl PartialEq for GetLinkedCollectionsPaginatedResponse
Source§fn eq(&self, other: &GetLinkedCollectionsPaginatedResponse) -> bool
fn eq(&self, other: &GetLinkedCollectionsPaginatedResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetLinkedCollectionsPaginatedResponse
Auto Trait Implementations§
impl Freeze for GetLinkedCollectionsPaginatedResponse
impl RefUnwindSafe for GetLinkedCollectionsPaginatedResponse
impl Send for GetLinkedCollectionsPaginatedResponse
impl Sync for GetLinkedCollectionsPaginatedResponse
impl Unpin for GetLinkedCollectionsPaginatedResponse
impl UnwindSafe for GetLinkedCollectionsPaginatedResponse
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