pub struct FuncInstrFlag<'a> {
pub has_special_instr: bool,
pub current_mode: Option<FuncInstrMode>,
pub entry: Vec<Operator<'a>>,
pub exit: Vec<Operator<'a>>,
}
Expand description
Instrumentation Data that is stored with every function
Fields§
§has_special_instr: bool
boolean flag to say whether there are special instrumentation modes to resolve for this function (see InstrumentationMode variants)
current_mode: Option<FuncInstrMode>
§entry: Vec<Operator<'a>>
§exit: Vec<Operator<'a>>
Implementations§
Source§impl<'a> FuncInstrFlag<'a>
impl<'a> FuncInstrFlag<'a>
pub fn has_instr(&self) -> bool
pub fn has_special_instr(&self) -> bool
Sourcepub fn add_instr(&mut self, val: Operator<'a>)
pub fn add_instr(&mut self, val: Operator<'a>)
Add an instruction to the current FuncInstrMode’s list
Sourcepub fn get_instr(&self, idx: usize) -> &Operator<'_>
pub fn get_instr(&self, idx: usize) -> &Operator<'_>
Get an instruction to the current FuncInstrMode’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 FuncInstrFlag<'a>
impl<'a> Clone for FuncInstrFlag<'a>
Source§fn clone(&self) -> FuncInstrFlag<'a>
fn clone(&self) -> FuncInstrFlag<'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 FuncInstrFlag<'a>
impl<'a> Debug for FuncInstrFlag<'a>
Source§impl<'a> Default for FuncInstrFlag<'a>
impl<'a> Default for FuncInstrFlag<'a>
Source§fn default() -> FuncInstrFlag<'a>
fn default() -> FuncInstrFlag<'a>
Returns the “default value” for a type. Read more
Source§impl Display for FuncInstrFlag<'_>
impl Display for FuncInstrFlag<'_>
Source§impl PartialEq for FuncInstrFlag<'_>
impl PartialEq for FuncInstrFlag<'_>
impl Eq for FuncInstrFlag<'_>
Auto Trait Implementations§
impl<'a> Freeze for FuncInstrFlag<'a>
impl<'a> RefUnwindSafe for FuncInstrFlag<'a>
impl<'a> Send for FuncInstrFlag<'a>
impl<'a> Sync for FuncInstrFlag<'a>
impl<'a> Unpin for FuncInstrFlag<'a>
impl<'a> UnwindSafe for FuncInstrFlag<'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.