pub struct FineTuningJobEvent {
pub id: String,
pub created_at: u32,
pub level: Level,
pub message: String,
pub object: String,
pub type: Option<FineTuningJobEventType>,
pub data: Option<Value>,
}
Expand description
Fine-tuning job event object
Fields§
§id: String
The object identifier.
created_at: u32
The Unix timestamp (in seconds) for when the fine-tuning job event was created.
level: Level
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<FineTuningJobEventType>
The type of event.
data: Option<Value>
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 duplicate 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<'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
Source§impl PartialEq for FineTuningJobEvent
impl PartialEq for FineTuningJobEvent
Source§impl Serialize for FineTuningJobEvent
impl Serialize for FineTuningJobEvent
impl StructuralPartialEq for FineTuningJobEvent
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