Struct nessa::execution::ExecutionInfo
source · pub struct ExecutionInfo {
pub instr_count: HashMap<&'static str, usize>,
pub instr_time: HashMap<&'static str, u128>,
pub loc_count: HashMap<i32, usize>,
pub loc_time: HashMap<i32, u128>,
pub ranges: FxHashMap<String, (usize, usize)>,
pub fn_count: HashMap<usize, usize>,
pub fn_time: HashMap<String, (u128, u128, f64)>,
pub total_time: u128,
}Fields§
§instr_count: HashMap<&'static str, usize>§instr_time: HashMap<&'static str, u128>§loc_count: HashMap<i32, usize>§loc_time: HashMap<i32, u128>§ranges: FxHashMap<String, (usize, usize)>§fn_count: HashMap<usize, usize>§fn_time: HashMap<String, (u128, u128, f64)>§total_time: u128Implementations§
source§impl ExecutionInfo
impl ExecutionInfo
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ExecutionInfo
impl Send for ExecutionInfo
impl Sync for ExecutionInfo
impl Unpin for ExecutionInfo
impl UnwindSafe for ExecutionInfo
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