pub trait Instrumenter<'a> {
Show 19 methods
// Required methods
fn finish_instr(&mut self);
fn curr_instrument_mode(&self) -> &Option<InstrumentationMode>;
fn set_instrument_mode_at(
&mut self,
mode: InstrumentationMode,
loc: Location,
);
fn curr_func_instrument_mode(&self) -> &Option<FuncInstrMode>;
fn set_func_instrument_mode(&mut self, mode: FuncInstrMode);
fn clear_instr_at(&mut self, loc: Location, mode: InstrumentationMode);
fn add_instr_at(&mut self, loc: Location, instr: Operator<'a>);
fn empty_alternate_at(&mut self, loc: Location) -> &mut Self;
fn empty_block_alt_at(&mut self, loc: Location) -> &mut Self;
fn get_injected_val(&self, idx: usize) -> &Operator<'_>;
// Provided methods
fn func_entry(&mut self) -> &mut Self { ... }
fn func_exit(&mut self) -> &mut Self { ... }
fn before_at(&mut self, loc: Location) -> &mut Self { ... }
fn after_at(&mut self, loc: Location) -> &mut Self { ... }
fn alternate_at(&mut self, loc: Location) -> &mut Self { ... }
fn semantic_after_at(&mut self, loc: Location) -> &mut Self { ... }
fn block_entry_at(&mut self, loc: Location) -> &mut Self { ... }
fn block_exit_at(&mut self, loc: Location) -> &mut Self { ... }
fn block_alt_at(&mut self, loc: Location) -> &mut Self { ... }
}
Expand description
Defines instrumentation behaviour
Required Methods§
Sourcefn finish_instr(&mut self)
fn finish_instr(&mut self)
Can be called after finishing some instrumentation to reset the mode.
Sourcefn curr_instrument_mode(&self) -> &Option<InstrumentationMode>
fn curr_instrument_mode(&self) -> &Option<InstrumentationMode>
Get the InstrumentType of the current location
Sourcefn set_instrument_mode_at(&mut self, mode: InstrumentationMode, loc: Location)
fn set_instrument_mode_at(&mut self, mode: InstrumentationMode, loc: Location)
Sets the type of Instrumentation Type of the specified location
Sourcefn curr_func_instrument_mode(&self) -> &Option<FuncInstrMode>
fn curr_func_instrument_mode(&self) -> &Option<FuncInstrMode>
Get the InstrumentType of the current function
Sourcefn set_func_instrument_mode(&mut self, mode: FuncInstrMode)
fn set_func_instrument_mode(&mut self, mode: FuncInstrMode)
Sets the type of Instrumentation Type of the current function
Sourcefn clear_instr_at(&mut self, loc: Location, mode: InstrumentationMode)
fn clear_instr_at(&mut self, loc: Location, mode: InstrumentationMode)
Clears the instruction at a given Location
Sourcefn add_instr_at(&mut self, loc: Location, instr: Operator<'a>)
fn add_instr_at(&mut self, loc: Location, instr: Operator<'a>)
Splice a new instruction into a specific location
Sourcefn empty_alternate_at(&mut self, loc: Location) -> &mut Self
fn empty_alternate_at(&mut self, loc: Location) -> &mut Self
Injects an empty InstrumentationMode Alternate
at a given location
Sourcefn empty_block_alt_at(&mut self, loc: Location) -> &mut Self
fn empty_block_alt_at(&mut self, loc: Location) -> &mut Self
Injects an empty block alternate at a given location
Sourcefn get_injected_val(&self, idx: usize) -> &Operator<'_>
fn get_injected_val(&self, idx: usize) -> &Operator<'_>
Get the instruction injected at index idx
Provided Methods§
Sourcefn func_entry(&mut self) -> &mut Self
fn func_entry(&mut self) -> &mut Self
Mark the current function to InstrumentFuncEntry
Sourcefn before_at(&mut self, loc: Location) -> &mut Self
fn before_at(&mut self, loc: Location) -> &mut Self
Injects an Instruction with InstrumentationMode Before
at a given location
Sourcefn after_at(&mut self, loc: Location) -> &mut Self
fn after_at(&mut self, loc: Location) -> &mut Self
Injects an Instruction with InstrumentationMode After
at a given location
Sourcefn alternate_at(&mut self, loc: Location) -> &mut Self
fn alternate_at(&mut self, loc: Location) -> &mut Self
Injects an Instruction with InstrumentationMode Alternate
at a given location
Sourcefn semantic_after_at(&mut self, loc: Location) -> &mut Self
fn semantic_after_at(&mut self, loc: Location) -> &mut Self
Injects a Semantic After at a given location
Sourcefn block_entry_at(&mut self, loc: Location) -> &mut Self
fn block_entry_at(&mut self, loc: Location) -> &mut Self
Injects a block entry at a given location
Sourcefn block_exit_at(&mut self, loc: Location) -> &mut Self
fn block_exit_at(&mut self, loc: Location) -> &mut Self
Injects a block exit at a given location
Sourcefn block_alt_at(&mut self, loc: Location) -> &mut Self
fn block_alt_at(&mut self, loc: Location) -> &mut Self
Injects a block alternate at a given location
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.