pub struct AdapterCoverageConfig {
pub adapter: String,
pub tool: String,
pub extra_args: Vec<String>,
pub env: HashMap<String, String>,
}Expand description
Adapter-specific coverage configurations.
Fields§
§adapter: StringAdapter name
tool: StringCoverage tool to use
extra_args: Vec<String>Extra arguments for coverage collection
env: HashMap<String, String>Environment variables for coverage
Trait Implementations§
Source§impl Clone for AdapterCoverageConfig
impl Clone for AdapterCoverageConfig
Source§fn clone(&self) -> AdapterCoverageConfig
fn clone(&self) -> AdapterCoverageConfig
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 AdapterCoverageConfig
impl RefUnwindSafe for AdapterCoverageConfig
impl Send for AdapterCoverageConfig
impl Sync for AdapterCoverageConfig
impl Unpin for AdapterCoverageConfig
impl UnsafeUnpin for AdapterCoverageConfig
impl UnwindSafe for AdapterCoverageConfig
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