pub struct FineTuningJobEvent {
pub created_at: i32,
pub data: Option<Value>,
pub id: String,
pub level: String,
pub message: String,
pub object: String,
pub _type: Option<String>,
}
Fields§
§created_at: i32
The Unix timestamp (in seconds) for when the fine-tuning job was created.
data: Option<Value>
The data associated with the event.
id: String
The object identifier.
level: String
The log level of the event.
message: String
The message of the event.
object: String
The object type, which is always "fine_tuning.job.event".
_type: Option<String>
The type of event.
Trait Implementations§
Source§impl Debug for FineTuningJobEvent
impl Debug for FineTuningJobEvent
Source§impl<'de> Deserialize<'de> for FineTuningJobEvent
impl<'de> Deserialize<'de> for FineTuningJobEvent
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 FineTuningJobEvent
impl RefUnwindSafe for FineTuningJobEvent
impl Send for FineTuningJobEvent
impl Sync for FineTuningJobEvent
impl Unpin for FineTuningJobEvent
impl UnwindSafe for FineTuningJobEvent
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