//! Structs for collecting metrics for verification
/// Metrics data to send after running a verification
#[derive(Clone, Debug)]pubstructVerificationMetrics{/// test framework used to run the tests
pubtest_framework: String,
/// Name of the application that ran the tests
pubapp_name: String,
/// Version of the application that ran the tests
pubapp_version: String
}