pub struct FineTuneDelete {
pub id: String,
pub object: String,
pub deleted: bool,
}
Fields§
§id: String
The ID of the fine-tuned model that was deleted.
object: String
The object type, which is always “fine_tune”.
deleted: bool
A boolean indicating whether the fine-tuned model was successfully deleted.
Trait Implementations§
Source§impl Debug for FineTuneDelete
impl Debug for FineTuneDelete
Source§impl<'de> Deserialize<'de> for FineTuneDelete
impl<'de> Deserialize<'de> for FineTuneDelete
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 FineTuneDelete
impl RefUnwindSafe for FineTuneDelete
impl Send for FineTuneDelete
impl Sync for FineTuneDelete
impl Unpin for FineTuneDelete
impl UnwindSafe for FineTuneDelete
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