windows::Win32::Media::DirectShow::Tv

Trait IMpeg2Stream_Impl

pub trait IMpeg2Stream_Impl: IUnknownImpl {
    // Required methods
    fn Initialize(
        &self,
        requesttype: MPEG_REQUEST_TYPE,
        pmpeg2data: Ref<'_, IMpeg2Data>,
        pcontext: *const MPEG_CONTEXT,
        pid: u16,
        tid: u8,
        pfilter: *const MPEG2_FILTER,
        hdatareadyevent: HANDLE,
    ) -> Result<()>;
    fn SupplyDataBuffer(
        &self,
        pstreambuffer: *const MPEG_STREAM_BUFFER,
    ) -> Result<()>;
}

Required Methods§

fn Initialize( &self, requesttype: MPEG_REQUEST_TYPE, pmpeg2data: Ref<'_, IMpeg2Data>, pcontext: *const MPEG_CONTEXT, pid: u16, tid: u8, pfilter: *const MPEG2_FILTER, hdatareadyevent: HANDLE, ) -> Result<()>

fn SupplyDataBuffer( &self, pstreambuffer: *const MPEG_STREAM_BUFFER, ) -> 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.

Implementors§