windows::Win32::Media::WindowsMediaFormat

Trait IWMReaderPlaylistBurn_Impl

pub trait IWMReaderPlaylistBurn_Impl: IUnknownImpl {
    // Required methods
    fn InitPlaylistBurn(
        &self,
        cfiles: u32,
        ppwszfilenames: *const PCWSTR,
        pcallback: Ref<'_, IWMStatusCallback>,
        pvcontext: *const c_void,
    ) -> Result<()>;
    fn GetInitResults(&self, cfiles: u32) -> Result<HRESULT>;
    fn Cancel(&self) -> Result<()>;
    fn EndPlaylistBurn(&self, hrburnresult: HRESULT) -> Result<()>;
}

Required Methods§

fn InitPlaylistBurn( &self, cfiles: u32, ppwszfilenames: *const PCWSTR, pcallback: Ref<'_, IWMStatusCallback>, pvcontext: *const c_void, ) -> Result<()>

fn GetInitResults(&self, cfiles: u32) -> Result<HRESULT>

fn Cancel(&self) -> Result<()>

fn EndPlaylistBurn(&self, hrburnresult: HRESULT) -> 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§