pub struct FineTuningJobError {
pub code: String,
pub message: String,
pub param: Option<String>,
}
Expand description
For fine-tuning jobs that have failed
, this will contain more information on the cause of the failure.
Fields§
§code: String
A machine-readable error code.
message: String
A human-readable error message.
param: Option<String>
The parameter that was invalid, usually training_file
or validation_file
. This field will be null if the failure was not parameter-specific.
Implementations§
Trait Implementations§
Source§impl Clone for FineTuningJobError
impl Clone for FineTuningJobError
Source§fn clone(&self) -> FineTuningJobError
fn clone(&self) -> FineTuningJobError
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 FineTuningJobError
impl Debug for FineTuningJobError
Source§impl<'de> Deserialize<'de> for FineTuningJobError
impl<'de> Deserialize<'de> for FineTuningJobError
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 FineTuningJobError
impl PartialEq for FineTuningJobError
Source§impl Serialize for FineTuningJobError
impl Serialize for FineTuningJobError
impl StructuralPartialEq for FineTuningJobError
Auto Trait Implementations§
impl Freeze for FineTuningJobError
impl RefUnwindSafe for FineTuningJobError
impl Send for FineTuningJobError
impl Sync for FineTuningJobError
impl Unpin for FineTuningJobError
impl UnwindSafe for FineTuningJobError
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