Enum decthings_api::rpc::model::FailedEvaluationError
source · pub enum FailedEvaluationError {
LauncherTerminated,
Cancelled,
ServerOverloaded,
InvalidExecutableFile,
ReadExecutableFileFailed,
Unknown,
MaxDurationExceeded {
at: AtCodeStartupOrInstantiateModelOrEvaluate,
},
CodeTerminated {
exit_code: Option<i32>,
signal: Option<String>,
oom: bool,
},
Exception {
at: AtCodeStartupOrInstantiateModelOrEvaluate,
exception_details: Option<String>,
},
InvalidOutput {
reason: InvalidOutputType,
details: String,
},
}
Variants§
LauncherTerminated
Cancelled
ServerOverloaded
InvalidExecutableFile
ReadExecutableFileFailed
Unknown
MaxDurationExceeded
CodeTerminated
Exception
InvalidOutput
Trait Implementations§
source§impl Clone for FailedEvaluationError
impl Clone for FailedEvaluationError
source§fn clone(&self) -> FailedEvaluationError
fn clone(&self) -> FailedEvaluationError
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 FailedEvaluationError
impl Debug for FailedEvaluationError
source§impl<'de> Deserialize<'de> for FailedEvaluationError
impl<'de> Deserialize<'de> for FailedEvaluationError
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 FailedEvaluationError
impl RefUnwindSafe for FailedEvaluationError
impl Send for FailedEvaluationError
impl Sync for FailedEvaluationError
impl Unpin for FailedEvaluationError
impl UnwindSafe for FailedEvaluationError
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