pub struct ListPredictions {
pub previous: Option<String>,
pub next: Option<String>,
pub results: Vec<PredictionsListItem>,
}
Expand description
GET https://api.replicate.com/v1/predictions
Fields§
§previous: Option<String>
§next: Option<String>
§results: Vec<PredictionsListItem>
Trait Implementations§
Source§impl Clone for ListPredictions
impl Clone for ListPredictions
Source§fn clone(&self) -> ListPredictions
fn clone(&self) -> ListPredictions
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 ListPredictions
impl Debug for ListPredictions
Source§impl<'de> Deserialize<'de> for ListPredictions
impl<'de> Deserialize<'de> for ListPredictions
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 ListPredictions
impl Display for ListPredictions
Source§impl PartialEq for ListPredictions
impl PartialEq for ListPredictions
Source§impl Serialize for ListPredictions
impl Serialize for ListPredictions
impl StructuralPartialEq for ListPredictions
Auto Trait Implementations§
impl Freeze for ListPredictions
impl RefUnwindSafe for ListPredictions
impl Send for ListPredictions
impl Sync for ListPredictions
impl Unpin for ListPredictions
impl UnwindSafe for ListPredictions
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