windows::Win32::Media::MediaFoundation

Trait IMFVideoMixerControl_Impl

pub trait IMFVideoMixerControl_Impl: IUnknownImpl {
    // Required methods
    fn SetStreamZOrder(&self, dwstreamid: u32, dwz: u32) -> Result<()>;
    fn GetStreamZOrder(&self, dwstreamid: u32) -> Result<u32>;
    fn SetStreamOutputRect(
        &self,
        dwstreamid: u32,
        pnrcoutput: *const MFVideoNormalizedRect,
    ) -> Result<()>;
    fn GetStreamOutputRect(
        &self,
        dwstreamid: u32,
    ) -> Result<MFVideoNormalizedRect>;
}

Required Methods§

fn SetStreamZOrder(&self, dwstreamid: u32, dwz: u32) -> Result<()>

fn GetStreamZOrder(&self, dwstreamid: u32) -> Result<u32>

fn SetStreamOutputRect( &self, dwstreamid: u32, pnrcoutput: *const MFVideoNormalizedRect, ) -> Result<()>

fn GetStreamOutputRect(&self, dwstreamid: u32) -> Result<MFVideoNormalizedRect>

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.

Implementors§