pub trait IWMIndexer_Impl: Sized {
    // Required methods
    fn StartIndexing(
        &self,
        pwszurl: &PCWSTR,
        pcallback: Option<&IWMStatusCallback>,
        pvcontext: *const c_void
    ) -> Result<()>;
    fn Cancel(&self) -> Result<()>;
}

Required Methods§

fn StartIndexing( &self, pwszurl: &PCWSTR, pcallback: Option<&IWMStatusCallback>, pvcontext: *const c_void ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§