Skip to main content

IPerformanceStopwatch

Trait IPerformanceStopwatch 

Source
pub trait IPerformanceStopwatch: IObject {
    // Provided methods
    fn m_count(self) -> i32 { ... }
    fn set_m_count(self, value: i32) { ... }
    fn m_reentrant(self) -> i32 { ... }
    fn set_m_reentrant(self, value: i32) { ... }
    fn m_counter(self) -> PerformanceCounter { ... }
    fn set_m_counter(self, value: PerformanceCounter) { ... }
}

Provided Methods§

Source

fn m_count(self) -> i32

Source

fn set_m_count(self, value: i32)

Source

fn m_reentrant(self) -> i32

Source

fn set_m_reentrant(self, value: i32)

Source

fn m_counter(self) -> PerformanceCounter

Source

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.

Implementors§