windows::Win32::Storage::Imapi

Trait IEnumDiscMasterFormats_Impl

pub trait IEnumDiscMasterFormats_Impl: IUnknownImpl {
    // Required methods
    fn Next(
        &self,
        cformats: u32,
        lpiidformatid: *mut GUID,
        pcfetched: *mut u32,
    ) -> Result<()>;
    fn Skip(&self, cformats: u32) -> Result<()>;
    fn Reset(&self) -> Result<()>;
    fn Clone(&self) -> Result<IEnumDiscMasterFormats>;
}

Required Methods§

fn Next( &self, cformats: u32, lpiidformatid: *mut GUID, pcfetched: *mut u32, ) -> Result<()>

fn Skip(&self, cformats: u32) -> Result<()>

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

fn Clone(&self) -> Result<IEnumDiscMasterFormats>

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§