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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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
Source§impl GetRequest for FineTuneListResponse
impl GetRequest for FineTuneListResponse
Auto Trait Implementations§
impl Freeze for FineTuneListResponse
impl RefUnwindSafe for FineTuneListResponse
impl Send for FineTuneListResponse
impl Sync for FineTuneListResponse
impl Unpin for FineTuneListResponse
impl UnwindSafe for FineTuneListResponse
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