Trait IWMPPlayer4_Impl
pub trait IWMPPlayer4_Impl: IWMPCore3_Impl {
Show 15 methods
// Required methods
fn enabled(&self, pbenabled: *mut VARIANT_BOOL) -> Result<()>;
fn Setenabled(&self, benabled: VARIANT_BOOL) -> Result<()>;
fn fullScreen(&self, pbfullscreen: *mut VARIANT_BOOL) -> Result<()>;
fn SetfullScreen(&self, bfullscreen: VARIANT_BOOL) -> Result<()>;
fn enableContextMenu(
&self,
pbenablecontextmenu: *mut VARIANT_BOOL,
) -> Result<()>;
fn SetenableContextMenu(
&self,
benablecontextmenu: VARIANT_BOOL,
) -> Result<()>;
fn SetuiMode(&self, bstrmode: &BSTR) -> Result<()>;
fn uiMode(&self, pbstrmode: *mut BSTR) -> Result<()>;
fn stretchToFit(&self, pbenabled: *mut VARIANT_BOOL) -> Result<()>;
fn SetstretchToFit(&self, benabled: VARIANT_BOOL) -> Result<()>;
fn windowlessVideo(&self, pbenabled: *mut VARIANT_BOOL) -> Result<()>;
fn SetwindowlessVideo(&self, benabled: VARIANT_BOOL) -> Result<()>;
fn isRemote(&self, pvarfisremote: *mut VARIANT_BOOL) -> Result<()>;
fn playerApplication(&self) -> Result<IWMPPlayerApplication>;
fn openPlayer(&self, bstrurl: &BSTR) -> Result<()>;
}
Required Methods§
fn enabled(&self, pbenabled: *mut VARIANT_BOOL) -> Result<()>
fn Setenabled(&self, benabled: VARIANT_BOOL) -> Result<()>
fn fullScreen(&self, pbfullscreen: *mut VARIANT_BOOL) -> Result<()>
fn SetfullScreen(&self, bfullscreen: VARIANT_BOOL) -> Result<()>
fn enableContextMenu( &self, pbenablecontextmenu: *mut VARIANT_BOOL, ) -> Result<()>
fn SetenableContextMenu(&self, benablecontextmenu: VARIANT_BOOL) -> Result<()>
fn SetuiMode(&self, bstrmode: &BSTR) -> Result<()>
fn uiMode(&self, pbstrmode: *mut BSTR) -> Result<()>
fn stretchToFit(&self, pbenabled: *mut VARIANT_BOOL) -> Result<()>
fn SetstretchToFit(&self, benabled: VARIANT_BOOL) -> Result<()>
fn windowlessVideo(&self, pbenabled: *mut VARIANT_BOOL) -> Result<()>
fn SetwindowlessVideo(&self, benabled: VARIANT_BOOL) -> Result<()>
fn isRemote(&self, pvarfisremote: *mut VARIANT_BOOL) -> Result<()>
fn playerApplication(&self) -> Result<IWMPPlayerApplication>
fn openPlayer(&self, bstrurl: &BSTR) -> Result<()>
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.