pub struct ModelEvalResult {
pub model: String,
pub status: ModelEvalStatus,
pub error_kind: Option<String>,
pub error: Option<String>,
pub report: Option<Report>,
pub clone: Option<StrategyEval>,
pub semantic: Option<StrategyEval>,
pub hybrid: Option<StrategyEval>,
}Fields§
§model: String§status: ModelEvalStatus§error_kind: Option<String>§error: Option<String>§report: Option<Report>§clone: Option<StrategyEval>§semantic: Option<StrategyEval>§hybrid: Option<StrategyEval>Trait Implementations§
Source§impl Clone for ModelEvalResult
impl Clone for ModelEvalResult
Source§fn clone(&self) -> ModelEvalResult
fn clone(&self) -> ModelEvalResult
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 Debug for ModelEvalResult
impl Debug for ModelEvalResult
Source§impl<'de> Deserialize<'de> for ModelEvalResult
impl<'de> Deserialize<'de> for ModelEvalResult
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 ModelEvalResult
impl RefUnwindSafe for ModelEvalResult
impl Send for ModelEvalResult
impl Sync for ModelEvalResult
impl Unpin for ModelEvalResult
impl UnsafeUnpin for ModelEvalResult
impl UnwindSafe for ModelEvalResult
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