Struct openai_req::fine_tunes::FineTuneListResponse
source · pub struct FineTuneListResponse {
pub object: String,
pub data: Vec<FineTuneListEntry>,
}
Expand description
Get list of all available fine-tunes Details at https://platform.openai.com/docs/api-reference/fine-tunes/list
Usage example
use openai_req::fine_tunes::FineTuneListResponse;
use openai_req::GetRequest;
let fine_tunes = FineTuneListResponse::get(&client).await?;
Fields§
§object: String
§data: Vec<FineTuneListEntry>
Trait Implementations§
source§impl Clone for FineTuneListResponse
impl Clone for FineTuneListResponse
source§fn clone(&self) -> FineTuneListResponse
fn clone(&self) -> FineTuneListResponse
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 FineTuneListResponse
impl Debug for FineTuneListResponse
source§impl<'de> Deserialize<'de> for FineTuneListResponse
impl<'de> Deserialize<'de> for FineTuneListResponse
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