pub trait IGlobalPerformanceStopwatch: IObject {
// Provided methods
fn m_count(self) -> i32 { ... }
fn set_m_count(self, value: i32) { ... }
fn m_elapsed(self) -> i64 { ... }
fn set_m_elapsed(self, value: i64) { ... }
fn m_counter(self) -> PerformanceCounter { ... }
fn set_m_counter(self, value: PerformanceCounter) { ... }
}Provided Methods§
fn m_count(self) -> i32
fn set_m_count(self, value: i32)
fn m_elapsed(self) -> i64
fn set_m_elapsed(self, value: i64)
fn m_counter(self) -> PerformanceCounter
fn set_m_counter(self, value: PerformanceCounter)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.