pub struct FineTuningJobEvent {
pub object: String,
pub id: String,
pub created_at: i64,
pub level: String,
pub message: String,
pub type: Option<String>,
pub data: Option<FineTuningJobEvent_Data>,
}
Expand description
Fine-tuning job event object
Fields§
§object: String
The object type, which is always “fine_tuning.job.event”.
id: String
The object identifier.
created_at: i64
The Unix timestamp (in seconds) for when the fine-tuning job was created.
level: String
The log level of the event.
message: String
The message of the event.
type: Option<String>
The type of event.
data: Option<FineTuningJobEvent_Data>
The data associated with the event.
Trait Implementations§
Source§impl Clone for FineTuningJobEvent
impl Clone for FineTuningJobEvent
Source§fn clone(&self) -> FineTuningJobEvent
fn clone(&self) -> FineTuningJobEvent
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 FineTuningJobEvent
impl Debug for FineTuningJobEvent
Source§impl Default for FineTuningJobEvent
impl Default for FineTuningJobEvent
Source§fn default() -> FineTuningJobEvent
fn default() -> FineTuningJobEvent
Returns the “default value” for a type. 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