pub struct ThreadStatistics {
pub total_function_calls: u64,
pub max_call_depth: usize,
pub total_errors: u64,
}Expand description
Thread statistics
Fields§
§total_function_calls: u64§max_call_depth: usize§total_errors: u64Trait Implementations§
Source§impl Debug for ThreadStatistics
impl Debug for ThreadStatistics
Source§impl<'de> Deserialize<'de> for ThreadStatistics
impl<'de> Deserialize<'de> for ThreadStatistics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ThreadStatistics
impl RefUnwindSafe for ThreadStatistics
impl Send for ThreadStatistics
impl Sync for ThreadStatistics
impl Unpin for ThreadStatistics
impl UnsafeUnpin for ThreadStatistics
impl UnwindSafe for ThreadStatistics
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