pub trait ISearchJob_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn AsyncState(&self) -> Result<VARIANT>;
    fn IsCompleted(&self) -> Result<VARIANT_BOOL>;
    fn CleanUp(&self) -> Result<()>;
    fn RequestAbort(&self) -> Result<()>;
}

Required Methods§

fn AsyncState(&self) -> Result<VARIANT>

fn IsCompleted(&self) -> Result<VARIANT_BOOL>

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

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

Object Safety§

This trait is not object safe.

Implementors§