pub struct BulkToolValidationSummary {
pub tools: Vec<String>,
pub cases_per_tool: usize,
}Expand description
Summary of a bulk validation run.
Fields§
§tools: Vec<String>Tool names that were validated.
cases_per_tool: usizeNumber of cases exercised per tool.
Trait Implementations§
Source§impl Clone for BulkToolValidationSummary
impl Clone for BulkToolValidationSummary
Source§fn clone(&self) -> BulkToolValidationSummary
fn clone(&self) -> BulkToolValidationSummary
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 moreAuto Trait Implementations§
impl Freeze for BulkToolValidationSummary
impl RefUnwindSafe for BulkToolValidationSummary
impl Send for BulkToolValidationSummary
impl Sync for BulkToolValidationSummary
impl Unpin for BulkToolValidationSummary
impl UnwindSafe for BulkToolValidationSummary
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