pub struct CollectionListResponse {
pub data: Vec<Collection>,
pub next_token: Option<String>,
}Expand description
Response from listing collections.
Fields§
§data: Vec<Collection>List of collections.
next_token: Option<String>Pagination token for next page.
Trait Implementations§
Source§impl Clone for CollectionListResponse
impl Clone for CollectionListResponse
Source§fn clone(&self) -> CollectionListResponse
fn clone(&self) -> CollectionListResponse
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 CollectionListResponse
impl Debug for CollectionListResponse
Source§impl<'de> Deserialize<'de> for CollectionListResponse
impl<'de> Deserialize<'de> for CollectionListResponse
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 CollectionListResponse
impl RefUnwindSafe for CollectionListResponse
impl Send for CollectionListResponse
impl Sync for CollectionListResponse
impl Unpin for CollectionListResponse
impl UnsafeUnpin for CollectionListResponse
impl UnwindSafe for CollectionListResponse
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