Trait IFullScreenVideoEx_Impl
pub trait IFullScreenVideoEx_Impl: IFullScreenVideo_Impl {
// Required methods
fn SetAcceleratorTable(&self, hwnd: HWND, haccel: HACCEL) -> Result<()>;
fn GetAcceleratorTable(
&self,
phwnd: *mut HWND,
phaccel: *mut HACCEL,
) -> Result<()>;
fn KeepPixelAspectRatio(&self, keepaspect: i32) -> Result<()>;
fn IsKeepPixelAspectRatio(&self) -> Result<i32>;
}
Required Methods§
fn SetAcceleratorTable(&self, hwnd: HWND, haccel: HACCEL) -> Result<()>
fn GetAcceleratorTable( &self, phwnd: *mut HWND, phaccel: *mut HACCEL, ) -> Result<()>
fn KeepPixelAspectRatio(&self, keepaspect: i32) -> Result<()>
fn IsKeepPixelAspectRatio(&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.