windows::Win32::System::WindowsSync

Trait IEnumRangeExceptions_Impl

pub trait IEnumRangeExceptions_Impl: IUnknownImpl {
    // Required methods
    fn Next(
        &self,
        cexceptions: u32,
        pprangeexception: OutRef<'_, IRangeException>,
        pcfetched: *mut u32,
    ) -> Result<()>;
    fn Skip(&self, cexceptions: u32) -> Result<()>;
    fn Reset(&self) -> Result<()>;
    fn Clone(&self) -> Result<IEnumRangeExceptions>;
}

Required Methods§

fn Next( &self, cexceptions: u32, pprangeexception: OutRef<'_, IRangeException>, pcfetched: *mut u32, ) -> Result<()>

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

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

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

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§