pub struct FineTuneList {
pub object: String,
pub data: Vec<FineTune>,
}Expand description
The response for listing fine-tunes: an object with "data" containing an array of FineTune.
Fields§
§object: StringTypically “list”.
data: Vec<FineTune>The actual array of fine-tune jobs.
Trait Implementations§
Source§impl Debug for FineTuneList
impl Debug for FineTuneList
Source§impl<'de> Deserialize<'de> for FineTuneList
impl<'de> Deserialize<'de> for FineTuneList
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 FineTuneList
impl RefUnwindSafe for FineTuneList
impl Send for FineTuneList
impl Sync for FineTuneList
impl Unpin for FineTuneList
impl UnwindSafe for FineTuneList
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