windows::Win32::Storage::VirtualDiskService

Trait IEnumVdsObject_Impl

pub trait IEnumVdsObject_Impl: IUnknownImpl {
    // Required methods
    fn Next(
        &self,
        celt: u32,
        ppobjectarray: OutRef<'_, IUnknown>,
        pcfetched: *mut u32,
    ) -> Result<()>;
    fn Skip(&self, celt: u32) -> Result<()>;
    fn Reset(&self) -> Result<()>;
    fn Clone(&self) -> Result<IEnumVdsObject>;
}

Required Methods§

fn Next( &self, celt: u32, ppobjectarray: OutRef<'_, IUnknown>, pcfetched: *mut u32, ) -> Result<()>

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

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

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

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§