Trait IQualProp_Impl
pub trait IQualProp_Impl: IUnknownImpl {
// Required methods
fn FramesDroppedInRenderer(&self) -> Result<i32>;
fn FramesDrawn(&self) -> Result<i32>;
fn AvgFrameRate(&self) -> Result<i32>;
fn Jitter(&self) -> Result<i32>;
fn AvgSyncOffset(&self) -> Result<i32>;
fn DevSyncOffset(&self) -> Result<i32>;
}
Required Methods§
fn FramesDroppedInRenderer(&self) -> Result<i32>
fn FramesDrawn(&self) -> Result<i32>
fn AvgFrameRate(&self) -> Result<i32>
fn Jitter(&self) -> Result<i32>
fn AvgSyncOffset(&self) -> Result<i32>
fn DevSyncOffset(&self) -> Result<i32>
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.