pub struct InstrumentationFlag<'a> {
pub current_mode: Option<InstrumentationMode>,
pub before: Vec<Operator<'a>>,
pub after: Vec<Operator<'a>>,
pub alternate: Option<Vec<Operator<'a>>>,
pub semantic_after: Vec<Operator<'a>>,
pub block_entry: Vec<Operator<'a>>,
pub block_exit: Vec<Operator<'a>>,
pub block_alt: Option<Vec<Operator<'a>>>,
}
Expand description
Instrumentation Data that is stored with every instruction
Fields§
§current_mode: Option<InstrumentationMode>
§before: Vec<Operator<'a>>
§after: Vec<Operator<'a>>
§alternate: Option<Vec<Operator<'a>>>
None means to replace with no instructions (effectively removing the original) Some(vec) means to replace with the vec of instructions Some(empty vec) means there is no alt instrumentation
semantic_after: Vec<Operator<'a>>
§block_entry: Vec<Operator<'a>>
§block_exit: Vec<Operator<'a>>
§block_alt: Option<Vec<Operator<'a>>>
None means to replace with no instructions (effectively removing the original) Some(vec) means to replace with the vec of instructions Some(empty vec) means there is no alt instrumentation
Implementations§
Source§impl<'a> InstrumentationFlag<'a>
impl<'a> InstrumentationFlag<'a>
pub fn has_instr(&self) -> bool
Sourcepub fn add_instr(&mut self, op: &Operator<'_>, val: Operator<'a>) -> bool
pub fn add_instr(&mut self, op: &Operator<'_>, val: Operator<'a>) -> bool
Add an instruction to the current InstrumentationMode’s list Returns whether the instrumentation was a ‘special’ mode
pub fn clear_instr(&mut self, mode: InstrumentationMode)
Sourcepub fn get_instr(&self, idx: usize) -> &Operator<'_>
pub fn get_instr(&self, idx: usize) -> &Operator<'_>
Get an instruction to the current InstrumentationMode’s list
Sourcepub fn finish_instr(&mut self)
pub fn finish_instr(&mut self)
Can be called after finishing some instrumentation to reset the mode.
Trait Implementations§
Source§impl<'a> Clone for InstrumentationFlag<'a>
impl<'a> Clone for InstrumentationFlag<'a>
Source§fn clone(&self) -> InstrumentationFlag<'a>
fn clone(&self) -> InstrumentationFlag<'a>
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<'a> Debug for InstrumentationFlag<'a>
impl<'a> Debug for InstrumentationFlag<'a>
Source§impl<'a> Default for InstrumentationFlag<'a>
impl<'a> Default for InstrumentationFlag<'a>
Source§fn default() -> InstrumentationFlag<'a>
fn default() -> InstrumentationFlag<'a>
Returns the “default value” for a type. Read more
Source§impl Display for InstrumentationFlag<'_>
impl Display for InstrumentationFlag<'_>
Source§impl PartialEq for InstrumentationFlag<'_>
impl PartialEq for InstrumentationFlag<'_>
impl Eq for InstrumentationFlag<'_>
Auto Trait Implementations§
impl<'a> Freeze for InstrumentationFlag<'a>
impl<'a> RefUnwindSafe for InstrumentationFlag<'a>
impl<'a> Send for InstrumentationFlag<'a>
impl<'a> Sync for InstrumentationFlag<'a>
impl<'a> Unpin for InstrumentationFlag<'a>
impl<'a> UnwindSafe for InstrumentationFlag<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.