pub struct CollectionsList {
pub collections: Vec<CollectionSummary>,
pub links: Vec<Link>,
}Expand description
A list of collection summaries as returned by GET /collections.
Fields§
§collections: Vec<CollectionSummary>Collection summaries.
links: Vec<Link>Navigation links.
Trait Implementations§
Source§impl Clone for CollectionsList
impl Clone for CollectionsList
Source§fn clone(&self) -> CollectionsList
fn clone(&self) -> CollectionsList
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 CollectionsList
impl Debug for CollectionsList
Source§impl<'de> Deserialize<'de> for CollectionsList
impl<'de> Deserialize<'de> for CollectionsList
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 CollectionsList
impl PartialEq for CollectionsList
Source§impl Serialize for CollectionsList
impl Serialize for CollectionsList
impl StructuralPartialEq for CollectionsList
Auto Trait Implementations§
impl Freeze for CollectionsList
impl RefUnwindSafe for CollectionsList
impl Send for CollectionsList
impl Sync for CollectionsList
impl Unpin for CollectionsList
impl UnsafeUnpin for CollectionsList
impl UnwindSafe for CollectionsList
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