pub struct FineTuningJobCancelledWebhookEvent {
pub id: String,
pub created_at: i64,
pub data: Data,
pub type_: String,
pub object: Option<String>,
}Expand description
Sent when a fine-tuning job has been cancelled.
Fields§
§id: StringThe unique ID of the event.
created_at: i64The Unix timestamp (in seconds) of when the fine-tuning job was cancelled.
data: DataEvent data payload.
type_: StringThe type of the event. Always fine_tuning.job.cancelled.
object: Option<String>The object of the event. Always event.
Trait Implementations§
Source§impl Clone for FineTuningJobCancelledWebhookEvent
impl Clone for FineTuningJobCancelledWebhookEvent
Source§fn clone(&self) -> FineTuningJobCancelledWebhookEvent
fn clone(&self) -> FineTuningJobCancelledWebhookEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for FineTuningJobCancelledWebhookEvent
impl<'de> Deserialize<'de> for FineTuningJobCancelledWebhookEvent
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 FineTuningJobCancelledWebhookEvent
impl RefUnwindSafe for FineTuningJobCancelledWebhookEvent
impl Send for FineTuningJobCancelledWebhookEvent
impl Sync for FineTuningJobCancelledWebhookEvent
impl Unpin for FineTuningJobCancelledWebhookEvent
impl UnsafeUnpin for FineTuningJobCancelledWebhookEvent
impl UnwindSafe for FineTuningJobCancelledWebhookEvent
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