pub trait IPerformanceStatistics: IObject {
// Provided methods
fn m_stopwatches(self) -> Array<IPerformanceStopwatch_Interface> { ... }
fn set_m_stopwatches(self, value: Array<IPerformanceStopwatch_Interface>) { ... }
fn m_enabled(self) -> bool { ... }
fn set_m_enabled(self, value: bool) { ... }
}Provided Methods§
fn m_stopwatches(self) -> Array<IPerformanceStopwatch_Interface>
fn set_m_stopwatches(self, value: Array<IPerformanceStopwatch_Interface>)
fn m_enabled(self) -> bool
fn set_m_enabled(self, value: bool)
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.