pub struct ListCollectionModels {
pub previous: Option<String>,
pub next: Option<String>,
pub results: Vec<ListCollectionModelsItem>,
}
Expand description
GET https://api.replicate.com/v1/collections
Fields§
§previous: Option<String>
§next: Option<String>
§results: Vec<ListCollectionModelsItem>
Trait Implementations§
source§impl Clone for ListCollectionModels
impl Clone for ListCollectionModels
source§fn clone(&self) -> ListCollectionModels
fn clone(&self) -> ListCollectionModels
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 Debug for ListCollectionModels
impl Debug for ListCollectionModels
source§impl<'de> Deserialize<'de> for ListCollectionModels
impl<'de> Deserialize<'de> for ListCollectionModels
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 Display for ListCollectionModels
impl Display for ListCollectionModels
source§impl PartialEq<ListCollectionModels> for ListCollectionModels
impl PartialEq<ListCollectionModels> for ListCollectionModels
source§fn eq(&self, other: &ListCollectionModels) -> bool
fn eq(&self, other: &ListCollectionModels) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ListCollectionModels
impl Serialize for ListCollectionModels
impl StructuralPartialEq for ListCollectionModels
Auto Trait Implementations§
impl RefUnwindSafe for ListCollectionModels
impl Send for ListCollectionModels
impl Sync for ListCollectionModels
impl Unpin for ListCollectionModels
impl UnwindSafe for ListCollectionModels
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