pub struct ProfilingInfo {
pub instr_count: FxHashMap<&'static str, usize>,
pub instr_time: FxHashMap<&'static str, u128>,
pub loc_time: FxHashMap<Arc<String>, FxHashMap<usize, u128>>,
pub total_time: u128,
}Fields§
§instr_count: FxHashMap<&'static str, usize>§instr_time: FxHashMap<&'static str, u128>§loc_time: FxHashMap<Arc<String>, FxHashMap<usize, u128>>§total_time: u128Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProfilingInfo
impl RefUnwindSafe for ProfilingInfo
impl Send for ProfilingInfo
impl Sync for ProfilingInfo
impl Unpin for ProfilingInfo
impl UnwindSafe for ProfilingInfo
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more