pub struct FineTuneJobError {
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.
Trait Implementations§
Source§impl Clone for FineTuneJobError
impl Clone for FineTuneJobError
Source§fn clone(&self) -> FineTuneJobError
fn clone(&self) -> FineTuneJobError
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 FineTuneJobError
impl Debug for FineTuneJobError
Source§impl<'de> Deserialize<'de> for FineTuneJobError
impl<'de> Deserialize<'de> for FineTuneJobError
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 FineTuneJobError
impl PartialEq for FineTuneJobError
Source§impl Serialize for FineTuneJobError
impl Serialize for FineTuneJobError
impl StructuralPartialEq for FineTuneJobError
Auto Trait Implementations§
impl Freeze for FineTuneJobError
impl RefUnwindSafe for FineTuneJobError
impl Send for FineTuneJobError
impl Sync for FineTuneJobError
impl Unpin for FineTuneJobError
impl UnwindSafe for FineTuneJobError
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