pub struct SmokeRunReport {
pub model_id: String,
pub suite: String,
pub status: VerificationStatus,
pub passed: bool,
pub checks: ChecksReport,
pub verification: ModelVerification,
pub cost_estimate_usd: Option<f64>,
}Expand description
Full smoke run report (the CLI adds gate and exit_code).
Fields§
§model_id: String§suite: String§status: VerificationStatus§passed: bool§checks: ChecksReport§verification: ModelVerification§cost_estimate_usd: Option<f64>Trait Implementations§
Source§impl Clone for SmokeRunReport
impl Clone for SmokeRunReport
Source§fn clone(&self) -> SmokeRunReport
fn clone(&self) -> SmokeRunReport
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 SmokeRunReport
impl Debug for SmokeRunReport
Auto Trait Implementations§
impl Freeze for SmokeRunReport
impl RefUnwindSafe for SmokeRunReport
impl Send for SmokeRunReport
impl Sync for SmokeRunReport
impl Unpin for SmokeRunReport
impl UnsafeUnpin for SmokeRunReport
impl UnwindSafe for SmokeRunReport
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