pub struct BlueprintTestResult {
pub passed: bool,
pub failures: Vec<String>,
pub metrics: BlueprintMetrics,
}Expand description
Outcome of running a blueprint test suite.
Fields§
§passed: boolWhether all expectations were met.
failures: Vec<String>Human-readable descriptions of each failed expectation.
metrics: BlueprintMetricsActual metrics observed during the engagement.
Trait Implementations§
Source§impl Clone for BlueprintTestResult
impl Clone for BlueprintTestResult
Source§fn clone(&self) -> BlueprintTestResult
fn clone(&self) -> BlueprintTestResult
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 BlueprintTestResult
impl Debug for BlueprintTestResult
Auto Trait Implementations§
impl Freeze for BlueprintTestResult
impl RefUnwindSafe for BlueprintTestResult
impl Send for BlueprintTestResult
impl Sync for BlueprintTestResult
impl Unpin for BlueprintTestResult
impl UnsafeUnpin for BlueprintTestResult
impl UnwindSafe for BlueprintTestResult
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