Trait IMFVideoMixerBitmap_Impl
pub trait IMFVideoMixerBitmap_Impl: IUnknownImpl {
// Required methods
fn SetAlphaBitmap(&self, pbmpparms: *const MFVideoAlphaBitmap) -> Result<()>;
fn ClearAlphaBitmap(&self) -> Result<()>;
fn UpdateAlphaBitmapParameters(
&self,
pbmpparms: *const MFVideoAlphaBitmapParams,
) -> Result<()>;
fn GetAlphaBitmapParameters(
&self,
pbmpparms: *mut MFVideoAlphaBitmapParams,
) -> Result<()>;
}
Required Methods§
fn SetAlphaBitmap(&self, pbmpparms: *const MFVideoAlphaBitmap) -> Result<()>
fn ClearAlphaBitmap(&self) -> Result<()>
fn UpdateAlphaBitmapParameters( &self, pbmpparms: *const MFVideoAlphaBitmapParams, ) -> Result<()>
fn GetAlphaBitmapParameters( &self, pbmpparms: *mut MFVideoAlphaBitmapParams, ) -> 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.