pub struct InstrumentOptions {
pub coverage_variable: String,
pub compact: bool,
pub report_logic: bool,
pub ignore_class_methods: Vec<String>,
pub input_source_map: Option<SourceMap>,
pub instrument_log: InstrumentLogOptions,
pub debug_initial_coverage_comment: bool,
}Fields§
§coverage_variable: String§compact: bool§report_logic: bool§ignore_class_methods: Vec<String>§input_source_map: Option<SourceMap>§instrument_log: InstrumentLogOptions§debug_initial_coverage_comment: boolTrait Implementations§
source§impl Clone for InstrumentOptions
impl Clone for InstrumentOptions
source§fn clone(&self) -> InstrumentOptions
fn clone(&self) -> InstrumentOptions
Returns a copy 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 InstrumentOptions
impl Debug for InstrumentOptions
source§impl Default for InstrumentOptions
impl Default for InstrumentOptions
source§impl<'de> Deserialize<'de> for InstrumentOptionswhere
InstrumentOptions: Default,
impl<'de> Deserialize<'de> for InstrumentOptionswhere InstrumentOptions: Default,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<InstrumentOptions> for InstrumentOptions
impl PartialEq<InstrumentOptions> for InstrumentOptions
source§fn eq(&self, other: &InstrumentOptions) -> bool
fn eq(&self, other: &InstrumentOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for InstrumentOptions
impl Serialize for InstrumentOptions
impl StructuralPartialEq for InstrumentOptions
Auto Trait Implementations§
impl RefUnwindSafe for InstrumentOptions
impl Send for InstrumentOptions
impl Sync for InstrumentOptions
impl Unpin for InstrumentOptions
impl UnwindSafe for InstrumentOptions
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