pub struct IntegrationTestResult {
pub h_code: String,
pub passed: bool,
pub findings_count: usize,
pub matching_detectors: Vec<String>,
pub false_negatives: Vec<String>,
pub execution_time_ms: u64,
}Expand description
Result of integration test
Fields§
§h_code: StringH-code
passed: boolWhether test passed
findings_count: usizeNumber of findings
matching_detectors: Vec<String>Matching detectors
false_negatives: Vec<String>False negatives (expected but not found)
execution_time_ms: u64Execution time in ms
Trait Implementations§
Source§impl Clone for IntegrationTestResult
impl Clone for IntegrationTestResult
Source§fn clone(&self) -> IntegrationTestResult
fn clone(&self) -> IntegrationTestResult
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 moreAuto Trait Implementations§
impl Freeze for IntegrationTestResult
impl RefUnwindSafe for IntegrationTestResult
impl Send for IntegrationTestResult
impl Sync for IntegrationTestResult
impl Unpin for IntegrationTestResult
impl UnsafeUnpin for IntegrationTestResult
impl UnwindSafe for IntegrationTestResult
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