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: Stringcompact: boolreport_logic: boolignore_class_methods: Vec<String>input_source_map: Option<SourceMap>instrument_log: InstrumentLogOptionsdebug_initial_coverage_comment: boolTrait Implementations
sourceimpl Clone for InstrumentOptions
impl Clone for InstrumentOptions
sourcefn clone(&self) -> InstrumentOptions
fn clone(&self) -> InstrumentOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for InstrumentOptions
impl Debug for InstrumentOptions
sourceimpl Default for InstrumentOptions
impl Default for InstrumentOptions
sourceimpl<'de> Deserialize<'de> for InstrumentOptionswhere
InstrumentOptions: Default,
impl<'de> Deserialize<'de> for InstrumentOptionswhere
InstrumentOptions: Default,
sourcefn 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
sourceimpl PartialEq<InstrumentOptions> for InstrumentOptions
impl PartialEq<InstrumentOptions> for InstrumentOptions
sourcefn eq(&self, other: &InstrumentOptions) -> bool
fn eq(&self, other: &InstrumentOptions) -> bool
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more