Trait IVMRSurface_Impl
pub trait IVMRSurface_Impl: IUnknownImpl {
// Required methods
fn IsSurfaceLocked(&self) -> Result<()>;
fn LockSurface(&self) -> Result<*mut u8>;
fn UnlockSurface(&self) -> Result<()>;
fn GetSurface(&self) -> Result<IDirectDrawSurface7>;
}
Required Methods§
fn IsSurfaceLocked(&self) -> Result<()>
fn LockSurface(&self) -> Result<*mut u8>
fn UnlockSurface(&self) -> Result<()>
fn GetSurface(&self) -> Result<IDirectDrawSurface7>
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.